org.richfaces.component.UIGraphValidator Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright , Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.richfaces.component;
import javax.annotation.Generated;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import javax.faces.context.FacesContext;
import javax.faces.component.UIComponent;
import javax.faces.component.behavior.ClientBehaviorHolder;
import javax.el.MethodExpression;
import javax.el.ValueExpression;
import javax.faces.component.StateHelper;
import org.richfaces.component.AbstractGraphValidator;
/**
* The <rich:graphValidator> component is used to wrap a set of input components related to one object. The
object defined by the <rich:graphValidator> component can then be completely validated. The validation includes
all object properties, even those which are not bound to the individual form components. Validation performed in this
way allows for cross-field validation in complex forms.
**/
@Generated({"RichFaces CDK", "4.3.1.Final"})
public class UIGraphValidator extends AbstractGraphValidator
{
public static final String COMPONENT_TYPE="org.richfaces.GraphValidator";
public static final String COMPONENT_FAMILY="org.richfaces.GraphValidator";
@Override
public String getFamily() {
return COMPONENT_FAMILY;
}
protected enum Properties {
groups,
summary,
type,
value
}
public Class>[] getGroups() {
Class>[] value = (Class>[]) getStateHelper().eval(Properties.groups);
return value;
}
public void setGroups(Class>[] groups) {
getStateHelper().put(Properties.groups, groups);
}
public String getSummary() {
String value = (String) getStateHelper().eval(Properties.summary);
return value;
}
public void setSummary(String summary) {
getStateHelper().put(Properties.summary, summary);
}
public String getType() {
String value = (String) getStateHelper().eval(Properties.type, "org.richfaces.BeanValidator");
return value;
}
public void setType(String type) {
getStateHelper().put(Properties.type, type);
}
public Object getValue() {
Object value = (Object) getStateHelper().eval(Properties.value);
return value;
}
public void setValue(Object value) {
getStateHelper().put(Properties.value, value);
}
}