Author: rich
Date: Thu Apr 28 18:12:44 2005
New Revision: 165247

URL: http://svn.apache.org/viewcvs?rev=165247&view=rev
Log:
Fix for http://issues.apache.org/jira/browse/BEEHIVE-525 : Need JavaDoc for the 
Jpf annotation interface

The JavaDoc more than doubled the size of the file :)

tests: bvt in netui (WinXP)
BB: self (linux)


Modified:
    
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/JpfLanguageConstants.java
    
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/genmodel/GenActionOutputModel.java
    
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations/Jpf.java
    
incubator/beehive/trunk/netui/src/testRecorder/org/apache/beehive/netui/tools/testrecorder/client/MasterTestRecorderJUnitTest.java

Modified: 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/JpfLanguageConstants.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/JpfLanguageConstants.java?rev=165247&r1=165246&r2=165247&view=diff
==============================================================================
--- 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/JpfLanguageConstants.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/JpfLanguageConstants.java
 Thu Apr 28 18:12:44 2005
@@ -133,7 +133,6 @@
     public static final String BUNDLE_PATH_ATTR = "bundlePath";
     public static final String BUNDLE_NAME_ATTR = "bundleName";
     public static final String ACTION_OUTPUTS_ATTR = "actionOutputs";
-    public static final String NULLABLE_ATTR = "nullable";
     public static final String REQUIRED_ATTR = "required";
     public static final String USE_FORM_BEAN_ATTR = "useFormBean";
     public static final String USE_FORM_BEAN_TYPE_ATTR = "useFormBeanType";

Modified: 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/genmodel/GenActionOutputModel.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/genmodel/GenActionOutputModel.java?rev=165247&r1=165246&r2=165247&view=diff
==============================================================================
--- 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/genmodel/GenActionOutputModel.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/compiler-core/org/apache/beehive/netui/compiler/genmodel/GenActionOutputModel.java
 Thu Apr 28 18:12:44 2005
@@ -36,10 +36,8 @@
     {
         setName( CompilerUtils.getString( annotation, NAME_ATTR, true ) );
         
-        Boolean required = CompilerUtils.getBoolean( annotation, 
REQUIRED_ATTR, true );
-        boolean nullable = 
-            required != null ? ! required.booleanValue() : 
CompilerUtils.getBoolean( annotation, NULLABLE_ATTR, false ).booleanValue();
-        
+        Boolean required = CompilerUtils.getBoolean( annotation, 
REQUIRED_ATTR, false );
+        boolean nullable = ! required.booleanValue();
         setNullable( nullable );
         
         //


Reply via email to