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 2005/02/11 17:58:11 UTC

svn commit: r153421 - incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java

Author: rich
Date: Fri Feb 11 08:58:10 2005
New Revision: 153421

URL: http://svn.apache.org/viewcvs?view=rev&rev=153421
Log:
Fix for http://issues.apache.org/jira/browse/BEEHIVE-281 : Page Flow AnnotationProcessorFactory is handling all annotation types

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


Modified:
    incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java

Modified: incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java?view=diff&r1=153420&r2=153421
==============================================================================
--- incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java (original)
+++ incubator/beehive/trunk/netui/src/compiler/org/apache/beehive/netui/compiler/apt/PageFlowAnnotationProcessorFactory.java Fri Feb 11 08:58:10 2005
@@ -26,16 +26,15 @@
 import java.util.Collection;
 import java.util.Arrays;
 import java.util.Collections;
-import java.util.ArrayList;
 
-import org.apache.beehive.netui.compiler.JpfLanguageConstants;
+import static org.apache.beehive.netui.compiler.JpfLanguageConstants.*;
 
 public class PageFlowAnnotationProcessorFactory
         implements AnnotationProcessorFactory
 {
     public Collection< String > supportedAnnotationTypes()
     {
-        return Collections.unmodifiableCollection( Arrays.asList( new String[]{ "*" } ) );
+        return Collections.unmodifiableCollection( Arrays.asList( new String[]{ ANNOTATION_QUALIFIER + '*' } ) );
     }
 
     public Collection< String > supportedOptions()