Author: akazakov
Date: 2007-07-18 06:44:14 -0400 (Wed, 18 Jul 2007)
New Revision: 2494
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/messages.properties
Log:
http://jira.jboss.com/jira/browse/EXIN-327
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/messages.properties
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/messages.properties 2007-07-18
09:58:43 UTC (rev 2493)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/validation/messages.properties 2007-07-18
10:44:14 UTC (rev 2494)
@@ -8,16 +8,32 @@
* Contributors:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
+#Components
NONUNIQUE_COMPONENT_NAME_MESSAGE=Duplicate component name: {0}
-UNKNOWN_INJECTION_NAME=Unknown context variable name: {0}
STATEFUL_COMPONENT_DOES_NOT_CONTENT_REMOVE=Stateful component "{0}" must have a
method marked @Remove
STATEFUL_COMPONENT_DOES_NOT_CONTENT_DESTROY=Stateful component "{0}" must have
a method marked @Destroy
STATEFUL_COMPONENT_WRONG_SCOPE=Stateful component "{0}" should not have
org.jboss.seam.ScopeType.PAGE, nor org.jboss.seam.ScopeType.STATELESS
+
+#Entities
ENTITY_COMPONENT_WRONG_SCOPE=Entity component "{0}" should not have
org.jboss.seam.ScopeType.STATELESS
DUPLICATE_REMOVE=Duplicate @Remove method "{0}"
+
+#Component lifecycle methods
DUPLICATE_DESTROY=Duplicate @Destroy method "{0}"
DUPLICATE_CREATE=Duplicate @Create method "{0}"
+DUPLICATE_UNWRAP=Duplicate @Unwrap method "{0}"
+DESTROY_DOESNT_BELONG_TO_COMPONENT=@Destroy method "{0}" must be declared in
component class
+CREATE_DOESNT_BELONG_TO_COMPONENT=@Create method "{0}" must be declared in
component class
+UNWRAP_DOESNT_BELONG_TO_COMPONENT=@Unwrap method "{0}" must be declared in
component class
+OBSERVER_DOESNT_BELONG_TO_COMPONENT=@Observer method "{0}" must be declared in
component class
+
+#Factories
UNKNOWN_FACTORY_NAME=Factory method "{0}" with a void return type must have an
associated @Out/Databinder
-MULTIPLE_DATA_BINDER=@DataModelSelection and @DataModelSelectionIndex without name
requires the only one @DataModel in the component.
+
+#Bijections
+MULTIPLE_DATA_BINDER=@DataModelSelection and @DataModelSelectionIndex without name
requires the only one @DataModel in the component
+UNKNOWN_DATA_MODEL=Unknown @DataModel/@Out name: {0}
+
+#Context variables
DUPLICATE_VARIABLE_NAME=Duplicate variable name: {0}
-UNKNOWN_DATA_MODEL=Unknown @DataModel/@Out name: {0}
\ No newline at end of file
+UNKNOWN_INJECTION_NAME=Unknown context variable name: {0}
\ No newline at end of file