You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ri...@apache.org on 2004/10/31 01:19:29 UTC

svn commit: rev 56086 - incubator/beehive/branches/v1/alpha/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations

Author: rich
Date: Sat Oct 30 16:19:27 2004
New Revision: 56086

Modified:
   incubator/beehive/branches/v1/alpha/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations/Jpf.java
Log:
Fix for http://nagoya.apache.org/jira/browse/BEEHIVE-40: Cannot use @Jpf.ActionOutput without 'typeHint' attribute.

DRT: netui (WinXP)
BB: self (linux)



Modified: incubator/beehive/branches/v1/alpha/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations/Jpf.java
==============================================================================
--- incubator/beehive/branches/v1/alpha/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations/Jpf.java	(original)
+++ incubator/beehive/branches/v1/alpha/netui/src/pageflow/org/apache/beehive/netui/pageflow/annotations/Jpf.java	Sat Oct 30 16:19:27 2004
@@ -403,7 +403,7 @@
     {
         String name();
         Class type();
-        String typeHint();
+        String typeHint() default "";
         boolean required() default true;
         /** @deprecated Use {@link #required}. **/
         boolean nullable() default false;