Package org.springmodules.xt.ajax.action.matcher

Examples of org.springmodules.xt.ajax.action.matcher.DefaultMatcher


     * Construct the action.
     * @param elementId The id of the html element which the content will be inserted after.
     * @param components The list of components representing the content to render through this action.
     */
    public InsertContentAfterAction(String elementId, List<Component> components) {
        super(new DefaultMatcher(elementId));
        this.components = components;
    }
View Full Code Here


     * Construct the action.
     * @param elementId The id of the html element which the content will be inserted after.
     * @param components The list of components representing the content to render through this action.
     */
    public InsertContentAfterAction(String elementId, Component... components) {
        super(new DefaultMatcher(elementId));
        this.components = Arrays.asList(components);
    }
View Full Code Here

    /**
     * Construct the action.
     * @param elementId The id of the html element whose content must be removed.
     */
    public RemoveContentAction(String elementId) {
        super(new DefaultMatcher(elementId));
    }
View Full Code Here

     * @param elementId The id of the html element whose attribute will be set.
     * @param attribute The attribute name.
     * @param value The value to set.
     */
    public SetAttributeAction(String elementId, String attribute, String value) {
        super(new DefaultMatcher(elementId));
        this.attribute = attribute;
        this.value = value;
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element to replace.
     * @param components The list of components representing the content to render through this action.
     */
    public ReplaceElementAction(String elementId, List<Component> components) {
        super(new DefaultMatcher(elementId));
        this.components = components;
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element to replace.
     * @param components The list of components representing the content to render through this action.
     */
    public ReplaceElementAction(String elementId, Component... components) {
        super(new DefaultMatcher(elementId));
        this.components = Arrays.asList(components);
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element which the content will be inserted before.
     * @param components The list of components representing the content to render through this action.
     */
    public InsertContentBeforeAction(String elementId, List<Component> components) {
        super(new DefaultMatcher(elementId));
        this.components = components;
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element which the content will be inserted before.
     * @param components The list of components representing the content to render through this action.
     */
    public InsertContentBeforeAction(String elementId, Component... components) {
        super(new DefaultMatcher(elementId));
        this.components = Arrays.asList(components);
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element for appending content to.
     * @param components The list of components representing the content to render through this action.
     */
    public AppendContentAction(String elementId, List<Component> components) {
        super(new DefaultMatcher(elementId));
        this.components = components;
    }
View Full Code Here

     * Construct the action.
     * @param elementId The id of the html element for appending content to.
     * @param components The list of components representing the content to render through this action.
     */
    public AppendContentAction(String elementId, Component... components) {
        super(new DefaultMatcher(elementId));
        this.components = Arrays.asList(components);
    }
View Full Code Here

TOP

Related Classes of org.springmodules.xt.ajax.action.matcher.DefaultMatcher

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.