- java.lang.Object
-
- com.itextpdf.tools.BuildTutorial
-
public class BuildTutorial extends java.lang.ObjectThis class can be used to build the iText website.- Author:
- Bruno Lowagie
-
-
Constructor Summary
Constructors Constructor Description BuildTutorial()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaction(java.io.File source, java.io.File destination, java.io.File xsl_examples, java.io.File xsl_site)Inspects a file or directory that is given and performs the necessary actions on it (transformation or recursion).static voidconvert(java.io.File infile, java.io.File xslfile, java.io.File outfile)Converts aninfile, using anxslfileto anoutfile.static voidmain(java.lang.String[] args)Main method so you can call the convert method from the command line.
-
-
-
Method Detail
-
main
public static void main(java.lang.String[] args)
Main method so you can call the convert method from the command line.- Parameters:
args- 4 arguments are expected:- a sourcedirectory (root of the tutorial xml-files),
- a destination directory (where the html and build.xml files will be generated),
- an xsl to transform the index.xml into a build.xml
- an xsl to transform the index.xml into am index.html
-
action
public static void action(java.io.File source, java.io.File destination, java.io.File xsl_examples, java.io.File xsl_site) throws java.io.IOExceptionInspects a file or directory that is given and performs the necessary actions on it (transformation or recursion).- Parameters:
source- a sourcedirectory (possibly with a tutorial xml-file)destination- a destination directory (where the html and build.xml file will be generated, if necessary)xsl_examples- an xsl to transform the index.xml into a build.xmlxsl_site- an xsl to transform the index.xml into am index.html- Throws:
java.io.IOException- when something goes wrong while reading or creating a file or directory
-
convert
public static void convert(java.io.File infile, java.io.File xslfile, java.io.File outfile)Converts aninfile, using anxslfileto anoutfile.- Parameters:
infile- the path to an XML filexslfile- the path to the XSL fileoutfile- the path for the output file
-
-