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

net.anotheria.anosite.gen.asbrand.data.Brand Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** Brand.java                                                               ***
 *** generated by AnoSiteGenerator (ASG), Version: 3.2.2                      ***
 *** Copyright (C) 2005 - 2023 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.asbrand.data;

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

public interface Brand extends DataObject, IComparable {

	/**
	 * Constant property name for "id" for internal storage and queries.
	 */
	String PROP_ID	= "id";
	/**
	 * Constant property name for "name" for internal storage and queries.
	 */
	String PROP_NAME	= "name";
	/**
	 * Constant property name for "defaultBrand" for internal storage and queries.
	 */
	String PROP_DEFAULT_BRAND	= "defaultBrand";
	/**
	 * Constant property name for "urlsToMap" for internal storage and queries.
	 */
	String PROP_URLS_TO_MAP	= "urlsToMap";
	/**
	 * Constant property name for "localizations" for internal storage and queries.
	 */
	String PROP_LOCALIZATIONS	= "localizations";
	/**
	 * Constant property name for "mediaLinks" for internal storage and queries.
	 */
	String PROP_MEDIA_LINKS	= "mediaLinks";
	/**
	 * Constant property name for "attributes" for internal storage and queries.
	 */
	String PROP_ATTRIBUTES	= "attributes";

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

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

	/**
	 * Returns the value of the defaultBrand attribute.
	 */
	boolean getDefaultBrand();

	/**
	 * Sets the value of the defaultBrand attribute.
	 */
	void setDefaultBrand(boolean value);

	/**
	 * Returns the value of the urlsToMap attribute.
	 */
	List getUrlsToMap();

	/**
	 * Sets the value of the urlsToMap attribute.
	 */
	void setUrlsToMap(List value);

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

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

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

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

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

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


	/**
	 * Returns the number of elements in the "urlsToMap" container
	 */
	int getUrlsToMapSize();

	/**
	 * Adds a new element to the list.
	 */
	void addUrlsToMapElement(String urlToMap);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy