Uses of Class
com.jalios.util.LangProperties
-
Packages that use LangProperties Package Description com.jalios.jcms Contains the core JPlatform classes.com.jalios.jcms.mail com.jalios.jcms.plugin com.jalios.jcms.property com.jalios.jcms.tools This package contains various tools used for/by JPlatform. -
-
Uses of LangProperties in com.jalios.jcms
Methods in com.jalios.jcms that return LangProperties Modifier and Type Method Description LangProperties
Channel. getLanguageProperties()
Gets the internal language properties used by channel.
As of version 5.5 those properties are the same asChannel.getChannelProperties()
but may differ in a future revision.LangProperties
Channel. getProperties(java.lang.String prefix)
Gets a new LangProperties instance containg all the properties whose name starts with the given prefix. -
Uses of LangProperties in com.jalios.jcms.mail
Methods in com.jalios.jcms.mail with parameters of type LangProperties Modifier and Type Method Description static MailAccount
MailAccount. getMailAccount(java.lang.String label, java.lang.String name, LangProperties props)
-
Uses of LangProperties in com.jalios.jcms.plugin
Methods in com.jalios.jcms.plugin that return LangProperties Modifier and Type Method Description LangProperties
PluginManager. getMainPluginCoreProperties()
Returns the core properties the main plugin override.Methods in com.jalios.jcms.plugin with parameters of type LangProperties Modifier and Type Method Description protected void
Plugin. loadLanguageProperties(LangProperties properties, java.util.List<java.lang.String> langList)
Load language properties into channel properties.void
PluginManager. loadLanguageProperties(LangProperties properties, java.util.List<java.lang.String> jcmsLangList)
Iterates on plugin's collection and load only languages properties for initialized plugins.void
PluginManager. loadMainPluginProperties(LangProperties properties, java.util.List<java.lang.String> jcmsLangList)
Loads all the properties of the main plugin.protected void
Plugin. loadProperties(LangProperties properties)
Load plugin properties into channel properties.void
PluginManager. loadProperties(LangProperties properties, java.util.List<java.lang.String> jcmsLangList)
Iterates on plugin's collection and load properties, including language properties for initialized plugins.void
PluginManager. loadProperties(LangProperties properties, java.util.List<java.lang.String> jcmsLangList, java.util.Collection<Plugin> collection, boolean onlyLangProp)
Iterates on plugin's collection and load properties for initialized plugins -
Uses of LangProperties in com.jalios.jcms.property
Methods in com.jalios.jcms.property that return LangProperties Modifier and Type Method Description LangProperties
PropertyManager. getLanguageProperties()
Gets the internal language properties used by channel.
As of version 5.5 those properties are the same asPropertyManager.getChannelProperties()
but may differ in a future revision.LangProperties
PropertyManager. getProperties(java.lang.String prefix)
Gets a new LangProperties instance containg all the properties whose name starts with the given prefix.Methods in com.jalios.jcms.property with parameters of type LangProperties Modifier and Type Method Description void
PropertyManager. reloadLanguageProperties(LangProperties properties)
Reload languages properties of JCMS (WEB-INF/jalios/languages/{lang}.prop) in the specified LangProperties instance -
Uses of LangProperties in com.jalios.jcms.tools
Fields in com.jalios.jcms.tools declared as LangProperties Modifier and Type Field Description protected LangProperties
LangPropertiesChecker. properties
Methods in com.jalios.jcms.tools that return LangProperties Modifier and Type Method Description LangProperties
CheckerContext. getLangProperties()
LangProperties
CheckerContext. getProperties()
static LangProperties
AbstractChecker. loadLanguageProperties(java.io.File webappDir)
static LangProperties
AbstractChecker. loadProperties(java.io.File webappDir)
Loads all plugins' plugin.prop, custom.prop, and jcms.prop.static LangProperties
AbstractChecker. loadProperties(java.io.File webappDir, org.apache.commons.io.filefilter.IOFileFilter fileFilter)
Loads all plugins' plugin.prop, custom.prop, and jcms.prop, filtering on given fileFilter.
Only accept *.prop file.Methods in com.jalios.jcms.tools with parameters of type LangProperties Modifier and Type Method Description static CheckResult
TypeChecker. check(java.io.File webappDir, LangProperties langProperties, java.util.List<java.lang.String> expectedLanguages)
Constructors in com.jalios.jcms.tools with parameters of type LangProperties Constructor Description CheckerContext(java.io.File webappDir, LangProperties properties, LangProperties langProperties)
LangPropertiesChecker(LangProperties properties, java.util.List<java.lang.String> langList)
-