[CJ-dev] commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet
Brought to you by:
johnqueso
Update of /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23133/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags Modified Files: OplAttributeTag.java OplChildOfTag.java OplPropertiesContainerTag.java OplParserTag.java Log Message: fixed some issues with velocity NodeParser template and the global nature of #set() directives... Index: OplChildOfTag.java =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags/OplChildOfTag.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- OplChildOfTag.java 8 Mar 2004 14:36:34 -0000 1.1 +++ OplChildOfTag.java 23 Mar 2004 01:49:00 -0000 1.2 @@ -23,7 +23,7 @@ * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getRequired(); + boolean getRequired(); /** Specifies the method to use in the ancestor parser for configuring it with this * parser's resulting instance. Index: OplParserTag.java =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags/OplParserTag.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- OplParserTag.java 8 Mar 2004 14:36:34 -0000 1.1 +++ OplParserTag.java 23 Mar 2004 01:49:00 -0000 1.2 @@ -18,6 +18,6 @@ * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getRoot(); + boolean getRoot(); } Index: OplAttributeTag.java =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags/OplAttributeTag.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- OplAttributeTag.java 16 Mar 2004 22:47:33 -0000 1.3 +++ OplAttributeTag.java 23 Mar 2004 01:49:00 -0000 1.4 @@ -18,21 +18,21 @@ * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getUseBody(); + boolean getUseBody(); /** Whether the attribute is required. * @qtags.parameter default="false" * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getRequired(); + boolean getRequired(); /** Whether the attribute value will be resolved using the context properties before returning. * @qtags.parameter default="false" * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getResolveValue(); + boolean getResolveValue(); /** One line of code to extract/format the value before setting it on the config instance. */ @@ -48,7 +48,7 @@ * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getBeforeChildren(); + boolean getBeforeChildren(); /** The XML-Schema type of the attribute. Currently supports: * @qtags.parameter default="string" Index: OplPropertiesContainerTag.java =================================================================== RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-opl/projects/opl-xdoclet/src/java/org/commonjava/opl/xdoclet/qtags/OplPropertiesContainerTag.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- OplPropertiesContainerTag.java 8 Mar 2004 23:06:41 -0000 1.1 +++ OplPropertiesContainerTag.java 23 Mar 2004 01:49:00 -0000 1.2 @@ -17,6 +17,6 @@ * @qtags.parameter allowed-value="true" * @qtags.parameter allowed-value="false" */ - String getDelegate(); + boolean getDelegate(); } |