All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.richfaces.validator.model.ClientSideScripts Maven / Gradle / Ivy

The newest version!
/**
 *
 */
package org.richfaces.validator.model;

import java.util.Collection;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

import com.google.common.collect.Lists;

/**
 * @author asmirnov
 *
 */
@XmlRootElement(name = "scripts")
public class ClientSideScripts {
    private Collection component = Lists.newArrayList();

    public void setComponent(Collection component) {
        this.component = component;
    }

    @XmlElement
    public Collection getComponent() {
        return component;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy