
net.anotheria.anosite.gen.assitedata.data.PageAlias Maven / Gradle / Ivy
/**
********************************************************************************
*** PageAlias.java ***
*** generated by AnoSiteGenerator (ASG), Version: 4.2.2 ***
*** Copyright (C) 2005 - 2025 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 PageAlias 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 "parameters" for internal storage and queries.
*/
String PROP_PARAMETERS = "parameters";
/**
* Constant property name for "type" for internal storage and queries.
*/
String PROP_TYPE = "type";
/**
* Constant property name for "pathes" for internal storage and queries.
*/
String PROP_PATHES = "pathes";
/**
* Constant property name for "targetPage" for internal storage and queries.
*/
String LINK_PROP_TARGET_PAGE = "targetPage";
/**
* 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 parameters attribute.
*/
String getParameters();
/**
* Sets the value of the parameters attribute.
*/
void setParameters(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 pathes attribute.
*/
List getPathes();
/**
* Sets the value of the pathes attribute.
*/
void setPathes(List value);
/**
* Returns the value of the targetPage attribute.
*/
String getTargetPage();
/**
* Sets the value of the targetPage attribute.
*/
void setTargetPage(String value);
/**
* Returns the number of elements in the "pathes" container
*/
int getPathesSize();
/**
* Adds a new element to the list.
*/
void addPathesElement(String path);
/**
* Removes the element at position index from the list.
*/
void removePathesElement(int index);
/**
* Swaps elements at positions index1 and index2 in the list.
*/
void swapPathesElement(int index1, int index2);
/**
* Returns the element at the position index in the list.
*/
String getPathesElement(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy