Friends,

Please see the code below.  As you can see I have two tags

@generate.props and @generate.include.

Do I have to write two plugins GeneratePropsPlugin.java and
GenerateIncludePlugin.java ?

Can I have only one file like GenerateCommonPlugin.java that can handle both
the @generate.props and the @generate.include tags?

Thank You
-Narahari

/*
* @author
* History:
* Creation:
* Modification:
*/
package test;

import java.lang.Integer;
import java.lang.String;


/**
* @author Narahari Lakshminarayana
* @version $Revision$
* @generate.props
 */
public interface TestInterface {
  /**
   *
   *
   * @param i
   * @generate.include
   */
  public void justSetTheValue(Integer i);

  /**
   *
   *
    * @return
   */
  public String justGetTheValue();
}


On 1/21/07, Narahari 'n' Savitha <[EMAIL PROTECTED]> wrote:

Friends,

Please see the code below.  As yo ucan see I have two tags

@generate.props and @generate.include.

Do I have to write two plugins GeneratePropsPlugin.java and
GenerateIncludePlugin.java ?

Can I have only one file like GenerateCommonPlugin.java that can handle
both the @generate.props and the @generate.include tags?

Thank You
-Narahari

/*
 * @author
 * History:
 * Creation:
 * Modification:
 */
package test;

import java.lang.Integer;
import java.lang.String;


/**
 * @author Narahari Lakshminarayana
 * @version $Revision$
 * @generate.props
  */
public interface TestInterface {
   /**
    *
    *
    * @param i
    * @generate.include
    */
   public void justSetTheValue(Integer i);

   /**
    *
    *
     * @return
    */
   public String justGetTheValue();
}

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
xdoclet-plugins-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-interest

Reply via email to