Interface EnhanceTool.Arguments
-
- Enclosing class:
- EnhanceTool
public static interface EnhanceTool.Arguments
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
debug()
java.io.File
dir()
boolean
dryrun()
EnhanceTool.ProcessingMode
mode()
boolean
newout()
java.io.File
rf()
java.lang.String
timingPointClass()
java.lang.String
timingPointDir()
int
verbose()
-
-
-
Method Detail
-
rf
@DefaultValue("tfannotations.properties") @Help("Name of resource file containing information about tf annotations") java.io.File rf()
-
debug
@DefaultValue("false") @Help("Debug flag") boolean debug()
-
verbose
@DefaultValue("0") @Help("Verbose flag") int verbose()
-
dryrun
@DefaultValue("false") @Help("Indicates a run that only prints out actions, but does not perform them") boolean dryrun()
-
dir
@DefaultValue(".") @Help("Directory to scan for class file") java.io.File dir()
-
newout
@DefaultValue("false") @Help("If true, write output to a .class.new file") boolean newout()
-
mode
@DefaultValue("TimingPoints") @Help("Control the mode of operation: TimingPoints, UpdateSchema, or TraceEnhance") EnhanceTool.ProcessingMode mode()
-
timingPointClass
@DefaultValue("") @Help("The timing point class name") java.lang.String timingPointClass()
-
timingPointDir
@DefaultValue("") @Help("The directory in which to write the TimingPoint file") java.lang.String timingPointDir()
-
-