Methods Summary |
---|
public void | execute()call the program
if (null == m_targetDirectory) {
throw new BuildException("TargetDirectory attribute not set.");
}
if (null == m_skinDirectory) {
throw new BuildException("SkinDirectory attribute not set.");
}
if (null == m_book) {
throw new BuildException("book attribute not set.");
}
createArg().setValue("targetDirectory=" + m_targetDirectory);
createArg().setValue(m_book.toString());
createArg().setValue(m_skinDirectory.toString());
if (null != m_loaderConfig) {
createArg().setValue("loaderConfig=" + m_loaderConfig);
}
super.execute();
|
public void | setBook(java.io.File book)Set the book xml file that the documentation generation starts from;
required.
m_book = book;
|
public void | setLoaderConfig(java.lang.String loaderConfig)A loader configuration to send to stylebook; optional.
m_loaderConfig = loaderConfig;
|
public void | setSkinDirectory(java.io.File skinDirectory)Set the directory that contains the stylebook skin;
required.
m_skinDirectory = skinDirectory;
|
public void | setTargetDirectory(java.io.File targetDirectory)Set the destination directory where the documentation is generated;
required.
m_targetDirectory = targetDirectory;
|