Package de.uplanet.lucy.server.rtcache
Interface TemplateInfo
-
- All Superinterfaces:
de.uplanet.lucy.server.rtcache.IRtInfo
,de.uplanet.lucy.server.rtcache.IRtInfoWithTitle
@Scriptable public interface TemplateInfo extends de.uplanet.lucy.server.rtcache.IRtInfo, de.uplanet.lucy.server.rtcache.IRtInfoWithTitle
-
-
Field Summary
Fields Modifier and Type Field Description static int
TPLTYPE_FIXED
static int
TPLTYPE_HIDDEN
static int
TPLTYPE_NORMAL
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDefaultDescription()
Get an application's default description.String
getDescription()
String
getDescription(String p_strLang)
Map<String,String>
getDescriptions()
Get the application's language specific descriptions.File
getDirTemplate()
String
getGuid()
File
getHugeIcon()
File
getIcon16()
Get the 16x16 pixel template icon.File
getIcon60()
Get the 60x60 pixel template icon.List<String>
getLanguages()
Date
getLastChange()
String
getName()
int
getOrder()
String
getRuntimeClass()
int
getTemplateType()
boolean
supportsLanguage(String p_strLang)
-
-
-
Field Detail
-
TPLTYPE_HIDDEN
static final int TPLTYPE_HIDDEN
- See Also:
- Constant Field Values
-
TPLTYPE_NORMAL
static final int TPLTYPE_NORMAL
- See Also:
- Constant Field Values
-
TPLTYPE_FIXED
static final int TPLTYPE_FIXED
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGuid
String getGuid()
-
getName
String getName()
-
getLastChange
Date getLastChange()
-
getDescription
String getDescription()
-
getRuntimeClass
String getRuntimeClass()
-
getTemplateType
int getTemplateType()
-
getOrder
int getOrder()
-
getDefaultDescription
String getDefaultDescription()
Get an application's default description.- Returns:
- The default description of this application (could be
null
).
-
getDescriptions
Map<String,String> getDescriptions()
Get the application's language specific descriptions.- Returns:
- The language specific descriptions (not
null
).
-
supportsLanguage
boolean supportsLanguage(String p_strLang)
-
getDirTemplate
File getDirTemplate()
-
getIcon16
File getIcon16()
Get the 16x16 pixel template icon.- Returns:
- The 16x16 pixel template icon
-
getHugeIcon
File getHugeIcon()
-
getIcon60
File getIcon60()
Get the 60x60 pixel template icon.- Returns:
- The 60x60 pixel template icon
-
-