[richfaces-svn-commits] JBoss Rich Faces SVN: r14150 - trunk/test-applications/jsp/src/main/java/colorPicker.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed May 13 04:55:07 EDT 2009


Author: Vadim Mikovoz
Date: 2009-05-13 04:55:07 -0400 (Wed, 13 May 2009)
New Revision: 14150

Modified:
   trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java
Log:


Modified: trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java	2009-05-13 08:54:52 UTC (rev 14149)
+++ trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java	2009-05-13 08:55:07 UTC (rev 14150)
@@ -20,12 +20,10 @@
 	private String converterMessage;	
 	private boolean flat;
 	private boolean immediate;
-	private boolean localValueSet;
 	private boolean rendered;
 	private boolean facets;
 	private boolean required;
 	private String requiredMessage;
-	private boolean valid;
 	private String validatorMessage;
 	private String value;
 	private String facetsValue;
@@ -46,11 +44,9 @@
 		converterMessage = "custom converter message";		
 		flat = false;
 		immediate = false;
-		localValueSet = true;
 		rendered = true;
 		required = false;
 		requiredMessage = "custom required message";
-		valid = true;
 		validatorMessage = "custom validator message";
 		value = new String();
 		facetsValue = new String(); 
@@ -146,14 +142,6 @@
 		this.immediate = immediate;
 	}
 
-	public boolean isLocalValueSet() {
-		return localValueSet;
-	}
-
-	public void setLocalValueSet(boolean localValueSet) {
-		this.localValueSet = localValueSet;
-	}
-
 	public boolean isRendered() {
 		return rendered;
 	}
@@ -178,14 +166,6 @@
 		this.requiredMessage = requiredMessage;
 	}
 
-	public boolean isValid() {
-		return valid;
-	}
-
-	public void setValid(boolean valid) {
-		this.valid = valid;
-	}
-
 	public String getValidatorMessage() {
 		return validatorMessage;
 	}




More information about the richfaces-svn-commits mailing list