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

net.anotheria.anosite.gen.aswebdata.data.Box Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** Box.java                                                                 ***
 *** generated by AnoSiteGenerator (ASG), Version: 2.6.3                      ***
 *** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net               ***
 *** All Rights Reserved.                                                     ***
 ********************************************************************************
 *** Don't edit this code, if you aren't sure                                 ***
 *** that you do exactly know what you are doing!                             ***
 *** It's better to invest time in the generator, as into the generated code. ***
 ********************************************************************************
 */

package net.anotheria.anosite.gen.aswebdata.data;

import net.anotheria.asg.data.DataObject;
import java.util.List;
import net.anotheria.util.sorter.IComparable;


public interface Box extends DataObject, IComparable {

	/**
	 * Constant property name for "id" for internal storage and queries.
	 */
	public static final String PROP_ID	= "id";
	/**
	 * Constant property name for "name" for internal storage and queries.
	 */
	public static final String PROP_NAME	= "name";
	/**
	 * Constant property name for "content" and domain "EN" for internal storage and queries.
	 */
	public static final String PROP_CONTENT_EN	= "content_EN";
	/**
	 * Constant property name for "content" and domain "DE" for internal storage and queries.
	 */
	public static final String PROP_CONTENT_DE	= "content_DE";
	/**
	 * Constant property name for "mediaLinks" for internal storage and queries.
	 */
	public static final String PROP_MEDIA_LINKS	= "mediaLinks";
	/**
	 * Constant property name for "scripts" for internal storage and queries.
	 */
	public static final String PROP_SCRIPTS	= "scripts";
	/**
	 * Constant property name for "localizations" for internal storage and queries.
	 */
	public static final String PROP_LOCALIZATIONS	= "localizations";
	/**
	 * Constant property name for "subboxes" for internal storage and queries.
	 */
	public static final String PROP_SUBBOXES	= "subboxes";
	/**
	 * Constant property name for "cssClass" for internal storage and queries.
	 */
	public static final String PROP_CSS_CLASS	= "cssClass";
	/**
	 * Constant property name for "parameter1" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER1	= "parameter1";
	/**
	 * Constant property name for "parameter2" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER2	= "parameter2";
	/**
	 * Constant property name for "parameter3" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER3	= "parameter3";
	/**
	 * Constant property name for "parameter4" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER4	= "parameter4";
	/**
	 * Constant property name for "parameter5" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER5	= "parameter5";
	/**
	 * Constant property name for "parameter6" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER6	= "parameter6";
	/**
	 * Constant property name for "parameter7" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER7	= "parameter7";
	/**
	 * Constant property name for "parameter8" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER8	= "parameter8";
	/**
	 * Constant property name for "parameter9" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER9	= "parameter9";
	/**
	 * Constant property name for "parameter10" for internal storage and queries.
	 */
	public static final String PROP_PARAMETER10	= "parameter10";
	/**
	 * Constant property name for "guards" for internal storage and queries.
	 */
	public static final String PROP_GUARDS	= "guards";
	/**
	 * Constant property name for "attributes" for internal storage and queries.
	 */
	public static final String PROP_ATTRIBUTES	= "attributes";
	/**
	 * Constant property name for "type" for internal storage and queries.
	 */
	public static final String LINK_PROP_TYPE	= "type";
	/**
	 * Constant property name for "handler" for internal storage and queries.
	 */
	public static final String LINK_PROP_HANDLER	= "handler";
	/**
	 * Constant property name for "accessOperation" for internal storage and queries.
	 */
	public static final String LINK_PROP_ACCESS_OPERATION	= "accessOperation";
	/**
	 * Constant property name for "feature" for internal storage and queries.
	 */
	public static final String LINK_PROP_FEATURE	= "feature";

	/**
	 * Returns the value of the name attribute.
	 */
	public String getName();

	/**
	 * Sets the value of the name attribute.
	 */
	public void setName(String value);

	/**
	 * Returns the value of the content attribute in the "EN" domain.
	 */
	public String getContentEN();

	/**
	 * Returns the value of the content attribute in the "DE" domain.
	 */
	public String getContentDE();

	/**
	 * Returns the current value of the content attribute.
	 * Current means in the currently selected domain.
	 */
	public String getContent();


	/**
	 * Sets the value of the content attribute in the domain "EN"
	 */
	public void setContentEN(String value);

	/**
	 * Sets the value of the content attribute in the domain "DE"
	 */
	public void setContentDE(String value);

	/**
	 * Sets the value of the content attribute in the current domain. Current means in the currently selected domain.
	 */
	public void setContent(String value);

	/**
	 * Returns the value of the mediaLinks attribute.
	 */
	public List getMediaLinks();

	/**
	 * Sets the value of the mediaLinks attribute.
	 */
	public void setMediaLinks(List value);

	/**
	 * Returns the value of the scripts attribute.
	 */
	public List getScripts();

	/**
	 * Sets the value of the scripts attribute.
	 */
	public void setScripts(List value);

	/**
	 * Returns the value of the localizations attribute.
	 */
	public List getLocalizations();

	/**
	 * Sets the value of the localizations attribute.
	 */
	public void setLocalizations(List value);

	/**
	 * Returns the value of the subboxes attribute.
	 */
	public List getSubboxes();

	/**
	 * Sets the value of the subboxes attribute.
	 */
	public void setSubboxes(List value);

	/**
	 * Returns the value of the cssClass attribute.
	 */
	public String getCssClass();

	/**
	 * Sets the value of the cssClass attribute.
	 */
	public void setCssClass(String value);

	/**
	 * Returns the value of the parameter1 attribute.
	 */
	public String getParameter1();

	/**
	 * Sets the value of the parameter1 attribute.
	 */
	public void setParameter1(String value);

	/**
	 * Returns the value of the parameter2 attribute.
	 */
	public String getParameter2();

	/**
	 * Sets the value of the parameter2 attribute.
	 */
	public void setParameter2(String value);

	/**
	 * Returns the value of the parameter3 attribute.
	 */
	public String getParameter3();

	/**
	 * Sets the value of the parameter3 attribute.
	 */
	public void setParameter3(String value);

	/**
	 * Returns the value of the parameter4 attribute.
	 */
	public String getParameter4();

	/**
	 * Sets the value of the parameter4 attribute.
	 */
	public void setParameter4(String value);

	/**
	 * Returns the value of the parameter5 attribute.
	 */
	public String getParameter5();

	/**
	 * Sets the value of the parameter5 attribute.
	 */
	public void setParameter5(String value);

	/**
	 * Returns the value of the parameter6 attribute.
	 */
	public String getParameter6();

	/**
	 * Sets the value of the parameter6 attribute.
	 */
	public void setParameter6(String value);

	/**
	 * Returns the value of the parameter7 attribute.
	 */
	public String getParameter7();

	/**
	 * Sets the value of the parameter7 attribute.
	 */
	public void setParameter7(String value);

	/**
	 * Returns the value of the parameter8 attribute.
	 */
	public String getParameter8();

	/**
	 * Sets the value of the parameter8 attribute.
	 */
	public void setParameter8(String value);

	/**
	 * Returns the value of the parameter9 attribute.
	 */
	public String getParameter9();

	/**
	 * Sets the value of the parameter9 attribute.
	 */
	public void setParameter9(String value);

	/**
	 * Returns the value of the parameter10 attribute.
	 */
	public String getParameter10();

	/**
	 * Sets the value of the parameter10 attribute.
	 */
	public void setParameter10(String value);

	/**
	 * Returns the value of the guards attribute.
	 */
	public List getGuards();

	/**
	 * Sets the value of the guards attribute.
	 */
	public void setGuards(List value);

	/**
	 * Returns the value of the attributes attribute.
	 */
	public List getAttributes();

	/**
	 * Sets the value of the attributes attribute.
	 */
	public void setAttributes(List value);

	/**
	 * Returns the value of the type attribute.
	 */
	public String getType();

	/**
	 * Sets the value of the type attribute.
	 */
	public void setType(String value);

	/**
	 * Returns the value of the handler attribute.
	 */
	public String getHandler();

	/**
	 * Sets the value of the handler attribute.
	 */
	public void setHandler(String value);

	/**
	 * Returns the value of the accessOperation attribute.
	 */
	public String getAccessOperation();

	/**
	 * Sets the value of the accessOperation attribute.
	 */
	public void setAccessOperation(String value);

	/**
	 * Returns the value of the feature attribute.
	 */
	public String getFeature();

	/**
	 * Sets the value of the feature attribute.
	 */
	public void setFeature(String value);


	/**
	 * Returns the number of elements in the "mediaLinks" container
	 */
	public int getMediaLinksSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addMediaLinksElement(String mediaLink);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeMediaLinksElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapMediaLinksElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getMediaLinksElement(int index);

	/**
	 * Returns the number of elements in the "scripts" container
	 */
	public int getScriptsSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addScriptsElement(String script);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeScriptsElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapScriptsElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getScriptsElement(int index);

	/**
	 * Returns the number of elements in the "localizations" container
	 */
	public int getLocalizationsSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addLocalizationsElement(String localization);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeLocalizationsElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapLocalizationsElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getLocalizationsElement(int index);

	/**
	 * Returns the number of elements in the "subboxes" container
	 */
	public int getSubboxesSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addSubboxesElement(String subbox);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeSubboxesElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapSubboxesElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getSubboxesElement(int index);

	/**
	 * Returns the number of elements in the "guards" container
	 */
	public int getGuardsSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addGuardsElement(String guard);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeGuardsElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapGuardsElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getGuardsElement(int index);

	/**
	 * Returns the number of elements in the "attributes" container
	 */
	public int getAttributesSize();

	/**
	 * Adds a new element to the list.
	 */
	public void addAttributesElement(String attribute);

	/**
	 * Removes the element at position index from the list.
	 */
	public void removeAttributesElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	public void swapAttributesElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	public String getAttributesElement(int index);


	/**
	 * Copies all multilingual properties from source language to destination language 
	 */
	public void copyLANG2LANG(String sourceLanguge, String destLanguage);

	/**
	 * Copies all multilingual properties from language EN to language DE
	 */
	public void copyEN2DE();

	/**
	 * Copies all multilingual properties from language DE to language EN
	 */
	public void copyDE2EN();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy