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

org.richfaces.cdk.model.BehaviorRendererModel 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.model;

/**
 * 

*

* * @author [email protected] * */ @SuppressWarnings("serial") public class BehaviorRendererModel extends DescriptionGroupBase implements ModelElement, GeneratedFacesComponent { private ClassName baseClass; private ClassName targetClass; private FacesId id; /** *

* Is that bean property generate in the class or should be generated ? *

*/ private Boolean generate; public BehaviorRendererModel(FacesId type) { this.id = type; } public BehaviorRendererModel() { } /** *

*

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

*

* * @return the id */ public FacesId getId() { return id; } /** *

*

* * @return the targetClass */ @Merge public ClassName getTargetClass() { return targetClass; } /** *

*

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

*

* * @return the baseClass */ @Merge public ClassName getBaseClass() { return this.baseClass; } /** *

*

* * @param baseClass the baseClass to set */ public void setBaseClass(ClassName baseClass) { this.baseClass = baseClass; } @Override public void merge(BehaviorRendererModel other) { ComponentLibrary.merge(this, other); } @Override public R accept(Visitor visitor, D data) { return visitor.visitBehaviorRenderer(this, data); } @Override public boolean same(BehaviorRendererModel other) { if (null != getId() && null != other.getId()) { // Both types not null, compare them. return getId().equals(other.getId()); } // one or both types are null, compare classes. if (null != getTargetClass() && getTargetClass().equals(other.getTargetClass())) { return true; } return false; } @Merge public Boolean getGenerate() { return generate; } public void setGenerate(Boolean generate) { this.generate = generate; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy