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

net.anotheria.anosite.gen.ascustomaction.data.ActionMappingDef Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** ActionMappingDef.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.ascustomaction.data;

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


public interface ActionMappingDef 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 "url" for internal storage and queries.
	 */
	public static final String PROP_URL	= "url";
	/**
	 * Constant property name for "parameters" for internal storage and queries.
	 */
	public static final String PROP_PARAMETERS	= "parameters";
	/**
	 * Constant property name for "command" for internal storage and queries.
	 */
	public static final String PROP_COMMAND	= "command";
	/**
	 * Constant property name for "localizationBundles" for internal storage and queries.
	 */
	public static final String PROP_LOCALIZATION_BUNDLES	= "localizationBundles";
	/**
	 * Constant property name for "action" for internal storage and queries.
	 */
	public static final String LINK_PROP_ACTION	= "action";
	/**
	 * Constant property name for "page" for internal storage and queries.
	 */
	public static final String LINK_PROP_PAGE	= "page";

	/**
	 * 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 url attribute.
	 */
	public String getUrl();

	/**
	 * Sets the value of the url attribute.
	 */
	public void setUrl(String value);

	/**
	 * Returns the value of the parameters attribute.
	 */
	public String getParameters();

	/**
	 * Sets the value of the parameters attribute.
	 */
	public void setParameters(String value);

	/**
	 * Returns the value of the command attribute.
	 */
	public int getCommand();

	/**
	 * Sets the value of the command attribute.
	 */
	public void setCommand(int value);

	/**
	 * Returns the value of the localizationBundles attribute.
	 */
	public List getLocalizationBundles();

	/**
	 * Sets the value of the localizationBundles attribute.
	 */
	public void setLocalizationBundles(List value);

	/**
	 * Returns the value of the action attribute.
	 */
	public String getAction();

	/**
	 * Sets the value of the action attribute.
	 */
	public void setAction(String value);

	/**
	 * Returns the value of the page attribute.
	 */
	public String getPage();

	/**
	 * Sets the value of the page attribute.
	 */
	public void setPage(String value);


	/**
	 * Returns the number of elements in the "localizationBundles" container
	 */
	public int getLocalizationBundlesSize();

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

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

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

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy