Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java b/jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java
index f46a12ac9..4618f76f6 100644
--- a/jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java
+++ b/jsf/plugins/org.eclipse.jst.jsf.common.runtime/src/org/eclipse/jst/jsf/common/runtime/internal/model/component/UIInputInfo.java
@@ -90,9 +90,9 @@ public class UIInputInfo extends UIOutputInfo implements
protected UIInputInfo(final ComponentInfo parent,
final ComponentTypeInfo typeInfo, Map attributes)
{
- this(getStringProperty("id", attributes, true), parent, typeInfo,
- getEditableValueHolderInfo("$editableValueHolderInfo",
- attributes), getBooleanProperty("rendered", attributes));
+ this(getStringProperty("id", attributes, true), parent, typeInfo, //$NON-NLS-1$
+ getEditableValueHolderInfo("$editableValueHolderInfo", //$NON-NLS-1$
+ attributes), getBooleanProperty("rendered", attributes)); //$NON-NLS-1$
}
private static IEditableValueHolderInfo getEditableValueHolderInfo(
@@ -110,7 +110,7 @@ public class UIInputInfo extends UIOutputInfo implements
// @Override
protected String getMostSpecificComponentName()
{
- return "UIInput";
+ return "UIInput"; //$NON-NLS-1$
}
public final boolean isValid()

Back to the top