Package org.openfaces.component.util

Examples of org.openfaces.component.util.Action


import java.io.IOException;

public class ActionRenderer extends OUICommandRenderer {
    @Override
    public void encodeBegin(FacesContext context, UIComponent component) throws IOException {
        Action action = (Action) component;
        if (action.isStandalone())
            encodeStandaloneInvocationMode(context, action);
    }
View Full Code Here

TOP

Related Classes of org.openfaces.component.util.Action

Copyright © 2018 www.massapicom. 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.