net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundle Maven / Gradle / Ivy
/**
********************************************************************************
*** LocalizationBundle.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.asresourcedata.data;
import net.anotheria.asg.data.DataObject;
import net.anotheria.util.sorter.IComparable;
public interface LocalizationBundle 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 "messages" and domain "EN" for internal storage and queries.
*/
String PROP_MESSAGES_EN = "messages_EN";
/**
* Constant property name for "messages" and domain "DE" for internal storage and queries.
*/
String PROP_MESSAGES_DE = "messages_DE";
/**
* Constant property name for "parentBundle" for internal storage and queries.
*/
String LINK_PROP_PARENT_BUNDLE = "parentBundle";
/**
* 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 messages attribute in the "EN" domain.
*/
String getMessagesEN();
/**
* Returns the value of the messages attribute in the "DE" domain.
*/
String getMessagesDE();
/**
* Returns the current value of the messages attribute.
* Current means in the currently selected domain.
*/
String getMessages();
/**
* Sets the value of the messages attribute in the domain "EN"
*/
void setMessagesEN(String value);
/**
* Sets the value of the messages attribute in the domain "DE"
*/
void setMessagesDE(String value);
/**
* Sets the value of the messages attribute in the current domain. Current means in the currently selected domain.
*/
void setMessages(String value);
/**
* Returns the value of the parentBundle attribute.
*/
String getParentBundle();
/**
* Sets the value of the parentBundle attribute.
*/
void setParentBundle(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();
}