L - defines the message listener typeM - defines the basic message typepublic interface IComponent<L,M> extends java.lang.Comparable<IComponent<L,M>>
| Modifier and Type | Method and Description |
|---|---|
Context<L,M> |
getContext()
Returns the components context object.
|
java.lang.String |
getLocaleID()
Represents the Locale ID, see: http://www.oracle.com/technetwork/java/javase/locales-137662.html.
|
java.lang.String |
getResourceBundleLocation()
Represents the location of your resource bundle file.
|
boolean |
isStarted()
Get if component was activated, can occur if message was send before
"init" message arrived.
|
void |
setLocaleID(java.lang.String localeId)
Set the Locale ID, see: http://www.oracle.com/technetwork/java/javase/locales-137662.html.
|
void |
setResourceBundleLocation(java.lang.String location)
Set the location of your resource bundle file.
|
void |
setStarted(boolean started)
Set once when component was first started
|
boolean isStarted()
void setStarted(boolean started)
started, - set to true if the component was initialized correctly.java.lang.String getLocaleID()
void setLocaleID(java.lang.String localeId)
localeId, - The locale id.java.lang.String getResourceBundleLocation()
void setResourceBundleLocation(java.lang.String location)
location - . The location of the resource bundle.