net.anotheria.anosite.gen.assitedata.data.EntryPoint Maven / Gradle / Ivy
/**
********************************************************************************
*** EntryPoint.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.assitedata.data;
import net.anotheria.asg.data.DataObject;
import java.util.List;
import net.anotheria.util.sorter.IComparable;
public interface EntryPoint 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 "type" for internal storage and queries.
*/
String PROP_TYPE = "type";
/**
* Constant property name for "defaultEntry" for internal storage and queries.
*/
String PROP_DEFAULT_ENTRY = "defaultEntry";
/**
* Constant property name for "domains" for internal storage and queries.
*/
String PROP_DOMAINS = "domains";
/**
* Constant property name for "startPage" for internal storage and queries.
*/
String LINK_PROP_START_PAGE = "startPage";
/**
* Constant property name for "startSite" for internal storage and queries.
*/
String LINK_PROP_START_SITE = "startSite";
/**
* 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 type attribute.
*/
int getType();
/**
* Sets the value of the type attribute.
*/
void setType(int value);
/**
* Returns the value of the defaultEntry attribute.
*/
boolean getDefaultEntry();
/**
* Sets the value of the defaultEntry attribute.
*/
void setDefaultEntry(boolean value);
/**
* Returns the value of the domains attribute.
*/
List getDomains();
/**
* Sets the value of the domains attribute.
*/
void setDomains(List value);
/**
* Returns the value of the startPage attribute.
*/
String getStartPage();
/**
* Sets the value of the startPage attribute.
*/
void setStartPage(String value);
/**
* Returns the value of the startSite attribute.
*/
String getStartSite();
/**
* Sets the value of the startSite attribute.
*/
void setStartSite(String value);
/**
* Returns the number of elements in the "domains" container
*/
int getDomainsSize();
/**
* Adds a new element to the list.
*/
void addDomainsElement(String domain);
/**
* Removes the element at position index from the list.
*/
void removeDomainsElement(int index);
/**
* Swaps elements at positions index1 and index2 in the list.
*/
void swapDomainsElement(int index1, int index2);
/**
* Returns the element at the position index in the list.
*/
String getDomainsElement(int index);
}