Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/taglibprocessing/attributevalues/messages.properties')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/taglibprocessing/attributevalues/messages.properties35
1 files changed, 35 insertions, 0 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/taglibprocessing/attributevalues/messages.properties b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/taglibprocessing/attributevalues/messages.properties
new file mode 100644
index 000000000..82c53628b
--- /dev/null
+++ b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/taglibprocessing/attributevalues/messages.properties
@@ -0,0 +1,35 @@
+ ##############################################################################*
+ # Copyright (c) 2006 Oracle Corporation.
+ # All rights reserved. This program and the accompanying materials
+ # are made available under the terms of the Eclipse Public License v1.0
+ # which accompanies this distribution, and is available at
+ # http://www.eclipse.org/legal/epl-v10.html
+ #
+ # Contributors:
+ # Gerry Kessler/Oracle - initial API and implementation
+ #
+ ################################################################################/
+IntegerType_invalid_integer=Value is not a valid integer.
+IntegerType_invalid_member=Value is not a member of the provided valid values
+LongType_invalid_long=Value is not a valid Long.
+LongType_invalid_member=Value is not a member of the provided valid values
+BooleanType_invalid_values=Valid values are "true" or "false"
+NumberType_max_val=Value exceeds maximum of {0}
+NumberType_min_val=Value is less than minimum of {0}
+DoubleType_invalid_double=Value is not a valid double.
+DoubleType_invalid_member=Value is not a member of the provided valid values
+StringType_invalid_value=Value is not valid.
+FacesConfigIdentifierType_invalid_validator_id= {0} validator id is is not registered.
+FacesConfigIdentifierType_invalid_converter_id= {0} converter id is not registered.
+FacesConfigConverterIDFeatures_converterid_empty=Converter ids must not be null or empty.
+FacesConfigValidatorIDFeatures_validatorid_empty=Validator ids must not be null or empty.
+ValueType_invalid_value_without_setter=This 'value' attribute value must be a value binding expression that can take a value assignment.
+ValueType_invalid_value=The 'value' attribute must be a non-zero length String or be a value binding expression.
+ComponentBindingType_invalid_value=The 'binding' attribute requires an EL value binding reference to a UIComponent.
+ComponentIDType_invalid_as_el='id' attributes must be Strings. Consider using 'binding' attribute instead.
+ComponentIDType_invalid_value=The 'id' attribute must be a non-zero length String and be uniquely defined on the page.
+ActionType_invalid_value=The action attribute must be a non-zero length String.
+ActionType_navcase_display={0}: goto {1}
+MethodBindingType_invalid_value=MethodBinding attribute values must be EL expressions.
+JavaClassType_invalid_type=Value for type attribute must be valid Java class and not empty.
+JavaClassType_not_found=Java type not found, not instantiable, or does implement correct interfaces or extend correct superclass.

Back to the top