Package org.apache.bsf.util.cf
Class CFDriver
- java.lang.Object
-
- org.apache.bsf.util.cf.CFDriver
-
public class CFDriver extends java.lang.Object
This is an example of how aCodeFormatter
bean can be used.The CFDriver is a stand-alone tool that will instantiate a
CodeFormatter
bean, configure it according to your command-line arguments, and invoke the formatting. Since the default source of input isstdin
, and the default target for output isstdout
, aCFDriver
can also be used as a filter.- Author:
- Matthew J. Duftler
- See Also:
CodeFormatter
-
-
Constructor Summary
Constructors Constructor Description CFDriver()
Not used.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
main(java.lang.String[] argv)
A driver forCodeFormatter
.
-
-
-
Method Detail
-
main
public static void main(java.lang.String[] argv)
A driver forCodeFormatter
.Usage:
java org.apache.cf.CFDriver [args]
args:
[-in fileName] default: <STDIN> [-out fileName] default: <STDOUT> [-maxLine length] default: 74 [-step size] default: 2 [-delim group] default: (+ [-sdelim group] default: ,
-
-