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

org.richfaces.cdk.xmlconfig.model.ComponentBean Maven / Gradle / Ivy

The newest version!
/*
 * $Id$
 *
 * License Agreement.
 *
 * Rich Faces - Natural Ajax for Java Server Faces (JSF)
 *
 * Copyright (C) 2007 Exadel, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1 as published by the Free Software Foundation.
 *
 * This library 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 library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 */
package org.richfaces.cdk.xmlconfig.model;

import java.util.Collection;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

import org.richfaces.cdk.model.AttributeModel;
import org.richfaces.cdk.model.ClassName;
import org.richfaces.cdk.model.ComponentLibrary;
import org.richfaces.cdk.model.EventModel;
import org.richfaces.cdk.model.FacesId;
import org.richfaces.cdk.model.FacetModel;
import org.richfaces.cdk.model.PropertyModel;

import com.google.common.collect.Lists;

/**
 * 

*

* * @author [email protected] */ @XmlType(name = "faces-config-componentType", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE, propOrder = { "id", "targetClass", "facets", "facesAttributes", "properties", "extension" }) @XmlJavaTypeAdapter(ComponentAdapter.class) public class ComponentBean extends ElementBeanBase { private List facets = Lists.newArrayList(); private ClassName targetClass; private FacesId id; /** *

*

* * @return the id */ @XmlElement(name = "component-type", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE, required = true) public FacesId getId() { return id; } /** *

*

* * @param id the id to set */ public void setId(FacesId id) { this.id = id; } @Override @XmlElement(name = "property", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE, type = PropertyBean.class) @XmlJavaTypeAdapter(PropertyAdapter.class) public Collection getProperties() { return super.getProperties(); } @Override @XmlElement(name = "attribute", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE, type = AttributeBean.class) @XmlJavaTypeAdapter(AttributeAdapter.class) public Collection getFacesAttributes() { return super.getFacesAttributes(); } /** *

*

* * @return the targetClass */ @XmlElement(name = "component-class", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE) @XmlJavaTypeAdapter(ClassAdapter.class) public ClassName getTargetClass() { return targetClass; } /** *

*

* * @param className the targetClass to set */ public void setTargetClass(ClassName className) { this.targetClass = className; } /** *

*

* * @return the facets */ @XmlElement(name = "facet", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE) @XmlJavaTypeAdapter(FacetAdapter.class) public List getFacets() { return facets; } /** *

*

* * @param facets the facets to set */ public void setFacets(List facets) { this.facets = facets; } /** *

*

* * @return the extension */ @XmlElement(name = "component-extension", namespace = ComponentLibrary.FACES_CONFIG_NAMESPACE) @Override public ComponentExtension getExtension() { return super.getExtension(); } @Override public void setExtension(ComponentExtension extension) { super.setExtension(extension); } public static class ComponentExtension extends TagExtensionBase { private FacesId rendererType; private List events = Lists.newArrayList(); private FacesId family; /** *

*

* * @param family the family to set */ public void setFamily(FacesId family) { this.family = family; } /** *

*

* * @return the family */ @XmlElement(name = "component-family", namespace = ComponentLibrary.CDK_EXTENSIONS_NAMESPACE) public FacesId getFamily() { return family; } /** *

*

* * @param rendererType the rendererTypes to set */ @XmlElement(name = "renderer-type", namespace = ComponentLibrary.CDK_EXTENSIONS_NAMESPACE) public void setRendererType(FacesId rendererType) { this.rendererType = rendererType; } /** *

*

* * @return the rendererTypes */ public FacesId getRendererType() { return rendererType; } /** *

*

* * @return the events */ @XmlElement(name = "fires", namespace = ComponentLibrary.CDK_EXTENSIONS_NAMESPACE) @XmlJavaTypeAdapter(EventAdapter.class) public List getEvents() { return events; } /** *

*

* * @param events the events to set */ public void setEvents(List events) { this.events = events; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy