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

com.alkacon.acacia.client.export.EntityWrapper Maven / Gradle / Ivy

Go to download

A GWT based resource editor. This component is used as a part of OpenCms, an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 2.1
Show newest version
/*
 * This library is part of the Acacia Editor -
 * an open source inline and form based content editor for GWT.
 *
 * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * 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.
 *
 * For further information about Alkacon Software, please see the
 * company website: http://www.alkacon.com
 * 
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package com.alkacon.acacia.client.export;

import com.alkacon.vie.shared.I_Entity;

import org.timepedia.exporter.client.Export;
import org.timepedia.exporter.client.ExportPackage;
import org.timepedia.exporter.client.Exportable;

/**
 * Exportable wrapper for entity instances.

*/ @Export @ExportPackage(value = "acacia") public class EntityWrapper implements Exportable { /** The entity wrapped by this wrapper. */ private I_Entity m_entity; /** * Default constructor.

*/ public EntityWrapper() { } /** * Wrapper constructor.

* * @param entity the entity to be wrapped */ public EntityWrapper(I_Entity entity) { m_entity = entity; } /** * Wrapper method.

* * @param attributeName argument for the wrapped method * @param value argument for the wrapped method */ public void addAttributeValueEntity(String attributeName, EntityWrapper value) { m_entity.addAttributeValue(attributeName, value.getEntity()); } /** * Wrapper method.

* * @param attributeName argument for the wrapped method * @param value argument for the wrapped method */ public void addAttributeValueString(String attributeName, String value) { m_entity.addAttributeValue(attributeName, value); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @return the result of the wrapped method */ public EntityAttributeWrapper getAttribute(String attributeName) { return new EntityAttributeWrapper(m_entity.getAttribute(attributeName)); } /** * Wrapper method.

* * @return the result of the wrapped method */ public EntityAttributeWrapper[] getAttributes() { return WrapperUtils.arrayFromEntityAttributeList(m_entity.getAttributes()); } /** * Gets the wrapped entity.

* * @return the wrapped entity */ public I_Entity getEntity() { return m_entity; } /** * Wrapper method.

* * @return the result of the wrapped method */ public String getId() { return m_entity.getId(); } /** * Wrapper method.

* * @return the result of the wrapped method */ public String getTypeName() { return m_entity.getTypeName(); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @return the result of the wrapped method */ public boolean hasAttribute(String attributeName) { return m_entity.hasAttribute(attributeName); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @param value parameter for the wrapped method * @param index parameter for the wrapped method */ public void insertAttributeValueEntity(String attributeName, EntityWrapper value, int index) { m_entity.insertAttributeValue(attributeName, value.getEntity(), index); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @param value parameter for the wrapped method * @param index parameter for the wrapped method */ public void insertAttributeValueString(String attributeName, String value, int index) { m_entity.insertAttributeValue(attributeName, value, index); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method */ public void removeAttribute(String attributeName) { m_entity.removeAttribute(attributeName); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method */ public void removeAttributeSilent(String attributeName) { m_entity.removeAttributeSilent(attributeName); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @param index parameter for the wrapped method */ public void removeAttributeValue(String attributeName, int index) { m_entity.removeAttributeValue(attributeName, index); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @param value parameter for the wrapped method */ public void setAttributeValueEntity(String attributeName, EntityWrapper value) { m_entity.setAttributeValue(attributeName, value.getEntity()); } /** public void setAttributeValueEntity(String attributeName, EntityWrapper value, int index) { m_entity.setAttributeValue(attributeName, value.getEntity(), index); } public void setAttributeValueString(String attributeName, String value) { m_entity.setAttributeValue(attributeName, value); } /** * Wrapper method.

* * @param attributeName parameter for the wrapped method * @param value parameter for the wrapped method * @param index parameter for the wrapped method */ public void setAttributeValueString(String attributeName, String value, int index) { m_entity.setAttributeValue(attributeName, value, index); } /** * Sets the wrapped entity.

* * @param entity the entity to wrap */ public void setEntity(I_Entity entity) { m_entity = entity; } /** * Wrapper method.

* * @return the result of the wrapped method */ public String toJSON() { return m_entity.toJSON(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy