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

org.opencms.ade.containerpage.shared.CmsInheritanceInfo Maven / Gradle / Ivy

Go to download

OpenCms is 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: 18.0
Show newest version
/*
 * File   : $Source$
 * Date   : $Date$
 * Version: $Revision$
 *
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (C) 2002 - 2011 Alkacon Software (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
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * 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 org.opencms.ade.containerpage.shared;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * A class whose instances are added to container element beans to provide information about container inheritance.

* */ public class CmsInheritanceInfo implements IsSerializable { /** The elements client id. */ private String m_clientId; /** True if this is a new element. */ private boolean m_isNew; /** The key identifying the inherited container element. */ private String m_key; /** True if the parent is visible. */ private boolean m_parentVisible; /** The path from which the element has been inherited. */ private String m_path; /** The element's own visibility. */ private boolean m_visibility; /** True if the visibility has been inherited. */ private boolean m_visibilityInherited; /** * Creates a new instance.

*/ public CmsInheritanceInfo() { } /** * Creates a new instance.

* * @param key the key identifying the container element * @param visibility the visibility of the container element * @param isNew if true, the element is new */ public CmsInheritanceInfo(String key, boolean visibility, boolean isNew) { m_key = key; m_visibility = visibility; m_isNew = isNew; } /** * Returns the elements client id.

* * @return the elements client id */ public String getClientId() { return m_clientId; } /** * Returns the key identifying the container element.

* * @return the key */ public String getKey() { return m_key; } /** * Gets the path from which this element was inherited.

* * @return the path from which this element was inherited */ public String getPath() { return m_path; } /** * Returns true if this container element is new.

* * @return true if the container element is new */ public boolean isNew() { return m_isNew; } /** * Returns the parent configuration's visibility.

* * @return the parent visibility */ public boolean isParentVisible() { return m_parentVisible; } /** * Returns the visibilityInherited.

* * @return the visibilityInherited */ public boolean isVisibilityInherited() { return m_visibilityInherited; } /** * Gets the container element's visibility.

* * @return the container element's visibility */ public boolean isVisible() { return m_visibility; } /** * Sets the elements client id.

* * @param clientId the elements client id to set */ public void setClientId(String clientId) { m_clientId = clientId; } /** * Sets the 'new' field.

* * @param isNew the new value for the 'new' field */ public void setIsNew(boolean isNew) { m_isNew = isNew; } /** * Sets the key identifying this container element.

* * @param key the key identifying the container element */ public void setKey(String key) { m_key = key; } /** * Sets the parent visibility.

* * @param parentVisible the new value for the parent visibility */ public void setParentVisible(boolean parentVisible) { m_parentVisible = parentVisible; } /** * Sets the path.

* * @param path the new value for the path */ public void setPath(String path) { m_path = path; } /** * Sets the 'visibilityInherited' attribute.

* * @param visibilityInherited the new value of the 'visibilityInherited' attribute */ public void setVisibilityInherited(boolean visibilityInherited) { m_visibilityInherited = visibilityInherited; } /** * Sets the new visibility.

* * @param visibility the new value of the visibility */ public void setVisible(boolean visibility) { m_visibility = visibility; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy