Package javax.faces.component

Examples of javax.faces.component.EditableValueHolder.resetValue()


  public static final ResetInputVisitCallback INSTANCE = new ResetInputVisitCallback();
 
    public VisitResult visit(VisitContext context, UIComponent target) {
        if(target instanceof EditableValueHolder) {
            EditableValueHolder input = (EditableValueHolder) target;
            input.resetValue();
        }
       
        return VisitResult.ACCEPT;
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.