Package org.nuiton.jaxx.plugin
Class GenerateHelpIdsMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.nuiton.plugin.AbstractPlugin
-
- org.nuiton.jaxx.plugin.AbstractJaxxMojo
-
- org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
-
- org.nuiton.jaxx.plugin.GenerateHelpIdsMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo,org.nuiton.plugin.Plugin,org.nuiton.plugin.PluginWithEncoding
@Mojo(name="generate-help-ids", defaultPhase=PROCESS_SOURCES, requiresProject=true) public class GenerateHelpIdsMojo extends AbstractGenerateHelpMojoGenerate the help ids files from the previous jaxx generation. Created: 22 déc. 2009- Since:
- 2.0.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
AbstractJaxxMojo.JaxxFileUpdater
-
-
Field Summary
Fields Modifier and Type Field Description protected Set<String>helpIdshelp ids to react.static StringINPUT_FILENAME_FORMATstatic StringINPUT_FILENAME_FULL_FORMATprotected FileinputHelpDirectoryDirectory where to merge (create) input files.protected StringinputHelpFilenamePrefixPrefix of input files.protected booleanmergeIdsToInputFlag to merge ids into input directory.protected booleanstrictModeFlag to remove obsolete ids into input files.-
Fields inherited from class org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
generateSearch, locales
-
Fields inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
generateHelp
-
-
Constructor Summary
Constructors Constructor Description GenerateHelpIdsMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancheckSkip()protected voiddoActionForLocale(Locale locale, boolean isDefaultLocale, File source, String localePath)Do the action for the given locale.FilegetTargetDirectory()voidinit()protected voidpostDoAction()Call back after doing all stuff for all locales declaredprotected voidpreDoAction()Call back before doing all stuff for all locales declaredvoidsetTargetDirectory(File targetDirectory)-
Methods inherited from class org.nuiton.jaxx.plugin.AbstractGenerateHelpMojo
cleanHelpIdsStore, doAction, getHelpIdsFilename, getHelpIdsStoreFile, getMergeHelpIdsFilename, getMergeHelpIdsStoreFile, getOutputHelpIds, loadHelpIds, removeQuote, setHelpIdsFilename, setMergeHelpIdsFilename, setOutputHelpIds, storeHelpIds
-
Methods inherited from class org.nuiton.jaxx.plugin.AbstractJaxxMojo
checkPackaging, getEncoding, getLastModified, getProject, isForce, isVerbose, setEncoding, setForce, setProject, setVerbose
-
Methods inherited from class org.nuiton.plugin.AbstractPlugin
acceptPackaging, addCompileSourceRoots, addDirectoryToUrlsList, addResourceDir, addTestCompileSourceRoots, addTestResourceDir, addUrlToUrlsList, afterExecute, backupFile, checkEncoding, checkResource, checkRunOnceDone, copyFile, createDirectoryIfNecessary, createNewFile, deleteFile, execute, getBackupFile, getFileFromBasedir, getFilesToTreate, getFilesToTreateForRoots, getRootProject, getTemplate, hasClassPath, initClassLoader, isExecutionRoot, isFileNewerThanPomFile, needInvoke, needInvoke, rejectPackaging, removeCompileSourceRoots, removeTestCompileSourceRoots, renameFile, writeFile
-
Methods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContext
-
-
-
-
Field Detail
-
INPUT_FILENAME_FULL_FORMAT
public static final String INPUT_FILENAME_FULL_FORMAT
- See Also:
- Constant Field Values
-
INPUT_FILENAME_FORMAT
public static final String INPUT_FILENAME_FORMAT
- See Also:
- Constant Field Values
-
mergeIdsToInput
@Parameter(property="jaxx.mergeIdsToInput", defaultValue="false", required=true) protected boolean mergeIdsToInputFlag to merge ids into input directory.- Since:
- 2.5.12
-
strictMode
@Parameter(property="jaxx.strictMode", defaultValue="false", required=true) protected boolean strictModeFlag to remove obsolete ids into input files. Important Note: Be sure to use this after a clean, or using withjaxx.forceproperty to get all ids of any jaxx files detected, otherwise you could loose some data. USE WITH CAUTION. Note: Only used whenmergeIdsToInputparameter is on.- Since:
- 2.5.12
-
inputHelpDirectory
@Parameter(property="jaxx.inputHelpDirectory", defaultValue="src/main/help", required=true) protected File inputHelpDirectoryDirectory where to merge (create) input files. Note: Only used whenmergeIdsToInputparameter is on.- Since:
- 2.5.12
-
inputHelpFilenamePrefix
@Parameter(property="jaxx.inputHelpFilenamePrefix", defaultValue="helpMapping", required=true) protected String inputHelpFilenamePrefixPrefix of input files. Note:-locale.propertieswill be added to each generated file (example:helpMapping-fr_FR.properties). Note: Only used whenmergeIdsToInputparameter is on.- Since:
- 2.5.12
-
-
Method Detail
-
init
public void init() throws Exception- Overrides:
initin classAbstractGenerateHelpMojo- Throws:
Exception
-
checkSkip
protected boolean checkSkip()
- Overrides:
checkSkipin classAbstractGenerateHelpMojo
-
preDoAction
protected void preDoAction() throws IOExceptionDescription copied from class:AbstractGenerateHelpMojoCall back before doing all stuff for all locales declared- Specified by:
preDoActionin classAbstractGenerateHelpMojo- Throws:
IOException
-
doActionForLocale
protected void doActionForLocale(Locale locale, boolean isDefaultLocale, File source, String localePath) throws Exception
Description copied from class:AbstractGenerateHelpMojoDo the action for the given locale.- Specified by:
doActionForLocalein classAbstractGenerateHelpMojo- Parameters:
locale- the locale to treateisDefaultLocale-trueif given locale is de the default localesource- where are stored help files for the given localelocalePath- the locale path to use (isdefaultif given locale is default).- Throws:
Exception- if any pb
-
postDoAction
protected void postDoAction()
Description copied from class:AbstractGenerateHelpMojoCall back after doing all stuff for all locales declared- Specified by:
postDoActionin classAbstractGenerateHelpMojo
-
getTargetDirectory
public File getTargetDirectory()
- Specified by:
getTargetDirectoryin classAbstractJaxxMojo
-
setTargetDirectory
public void setTargetDirectory(File targetDirectory)
- Specified by:
setTargetDirectoryin classAbstractJaxxMojo
-
-