User: ara_e_w 
  Date: 02/06/09 00:30:29

  Modified:    core/src/xdoclet/tagshandler MethodTagsHandler.java
  Log:
  typo: boolean->void
  
  Revision  Changes    Path
  1.7       +2 -2      xdoclet/core/src/xdoclet/tagshandler/MethodTagsHandler.java
  
  Index: MethodTagsHandler.java
  ===================================================================
  RCS file: 
/cvsroot/xdoclet/xdoclet/core/src/xdoclet/tagshandler/MethodTagsHandler.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- MethodTagsHandler.java    9 Jun 2002 06:11:46 -0000       1.6
  +++ MethodTagsHandler.java    9 Jun 2002 07:30:28 -0000       1.7
  @@ -23,7 +23,7 @@
    * @author               Ara Abrahamian ([EMAIL PROTECTED])
    * @created              Oct 15, 2001
    * @xdoclet:taghandler   namespace="Method"
  - * @version              $Revision: 1.6 $
  + * @version              $Revision: 1.7 $
    */
   public class MethodTagsHandler extends AbstractProgramElementTagsHandler
   {
  @@ -113,7 +113,7 @@
       {
           String str = method.getName();
   
  -        if ((str.startsWith("get") || str.startsWith("is")) && 
method.getReturnType().equals(XJavaDoc.getInstance().getXClass("boolean")) && 
method.getParameters().length == 0)
  +        if ((str.startsWith("get") || str.startsWith("is")) && 
(!method.getReturnType().equals(XJavaDoc.getInstance().getXClass("void"))) && 
method.getParameters().length == 0)
               return true;
           else
               return false;
  
  
  

_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas - 
http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to