Author: adubovsky
Date: 2009-05-25 10:00:29 -0400 (Mon, 25 May 2009)
New Revision: 14307
Modified:
branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/validator/ValidatorBean.java
Log:
Change UIBeanValidator to UIComponent
Modified:
branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/validator/ValidatorBean.java
===================================================================
---
branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/validator/ValidatorBean.java 2009-05-25
13:57:52 UTC (rev 14306)
+++
branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/validator/ValidatorBean.java 2009-05-25
14:00:29 UTC (rev 14307)
@@ -17,7 +17,6 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
-import org.richfaces.component.UIBeanValidator;
import org.richfaces.helloworld.domain.util.componentInfo.ComponentInfo;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
@@ -42,7 +41,7 @@
@Size(min=1,max=5,message="Size validation failed!")
private ArrayList<SelectItem> sizeValues;
private String sizeValue;
- private UIBeanValidator ajaxValidatorComponent = null;
+ private UIComponent ajaxValidatorComponent = null;
private boolean ajaxSingle;
private String bindLabel;
private boolean disableDefault;
@@ -198,11 +197,11 @@
return null;
}
- public UIBeanValidator getAjaxValidatorComponent() {
+ public UIComponent getAjaxValidatorComponent() {
return ajaxValidatorComponent;
}
- public void setAjaxValidatorComponent(UIBeanValidator ajaxValidatorComponent) {
+ public void setAjaxValidatorComponent(UIComponent ajaxValidatorComponent) {
this.ajaxValidatorComponent = ajaxValidatorComponent;
}
Show replies by date