
net.anotheria.anosite.gen.asresourcedata.data.Image Maven / Gradle / Ivy
/**
********************************************************************************
*** Image.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.asresourcedata.data;
import net.anotheria.asg.data.DataObject;
import net.anotheria.util.sorter.IComparable;
public interface Image 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 "title" for internal storage and queries.
*/
String PROP_TITLE = "title";
/**
* Constant property name for "alias" and domain "EN" for internal storage and queries.
*/
String PROP_ALIAS_EN = "alias_EN";
/**
* Constant property name for "alias" and domain "DE" for internal storage and queries.
*/
String PROP_ALIAS_DE = "alias_DE";
/**
* Constant property name for "alt" and domain "EN" for internal storage and queries.
*/
String PROP_ALT_EN = "alt_EN";
/**
* Constant property name for "alt" and domain "DE" for internal storage and queries.
*/
String PROP_ALT_DE = "alt_DE";
/**
* Constant property name for "image" for internal storage and queries.
*/
String PROP_IMAGE = "image";
/**
* 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 title attribute.
*/
String getTitle();
/**
* Sets the value of the title attribute.
*/
void setTitle(String value);
/**
* Returns the value of the alias attribute in the "EN" domain.
*/
String getAliasEN();
/**
* Returns the value of the alias attribute in the "DE" domain.
*/
String getAliasDE();
/**
* Returns the current value of the alias attribute.
* Current means in the currently selected domain.
*/
String getAlias();
/**
* Sets the value of the alias attribute in the domain "EN"
*/
void setAliasEN(String value);
/**
* Sets the value of the alias attribute in the domain "DE"
*/
void setAliasDE(String value);
/**
* Sets the value of the alias attribute in the current domain. Current means in the currently selected domain.
*/
void setAlias(String value);
/**
* Returns the value of the alt attribute in the "EN" domain.
*/
String getAltEN();
/**
* Returns the value of the alt attribute in the "DE" domain.
*/
String getAltDE();
/**
* Returns the current value of the alt attribute.
* Current means in the currently selected domain.
*/
String getAlt();
/**
* Sets the value of the alt attribute in the domain "EN"
*/
void setAltEN(String value);
/**
* Sets the value of the alt attribute in the domain "DE"
*/
void setAltDE(String value);
/**
* Sets the value of the alt attribute in the current domain. Current means in the currently selected domain.
*/
void setAlt(String value);
/**
* Returns the value of the image attribute.
*/
String getImage();
/**
* Sets the value of the image attribute.
*/
void setImage(String value);
/**
* Copies all multilingual properties from source language to destination language
*/
void copyLANG2LANG(String sourceLanguge, String destLanguage);
/**
* Copies all multilingual properties from language EN to language DE
*/
void copyEN2DE();
/**
* Copies all multilingual properties from language DE to language EN
*/
void copyDE2EN();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy