| com.flexive.tools.ant.MakeMessagesTask
MakeMessagesTask | public class MakeMessagesTask extends Task (Code) | | Builds message property files.
author: Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) version: $Rev: 181 $ |
Method Summary | |
public void | execute() | public void | setDest(String dest) Sets the target name of the output property file (e.g. | public void | setLanguages(String languages) Sets the language(s) to be processed (comma separated). | public void | setSrcdir(String srcdir) Sets the source directory containing all .properties files. | public void | setSrcprefix(String srcprefix) Sets the common prefix of the files to be included (may be null).
Parameters: srcprefix - the common prefix of the files to be included (e.g. |
execute | public void execute() throws BuildException(Code) | | |
setDest | public void setDest(String dest)(Code) | | Sets the target name of the output property file (e.g. "ApplicationResources").
Parameters: dest - the base name of the output property file (e.g. "ApplicationResources") |
setLanguages | public void setLanguages(String languages)(Code) | | Sets the language(s) to be processed (comma separated). The first language
is used as the default language, i.e. will be used to created the fallback
properties file without a language suffix.
Parameters: languages - the language(s) to be processed (comma separated). |
setSrcdir | public void setSrcdir(String srcdir)(Code) | | Sets the source directory containing all .properties files.
Parameters: srcdir - the source directory containing all .properties files. |
setSrcprefix | public void setSrcprefix(String srcprefix)(Code) | | Sets the common prefix of the files to be included (may be null).
Parameters: srcprefix - the common prefix of the files to be included (e.g. "Ex", may be null). Shouldnot contain wildcards. |
|
|