Interface DocRenderer
-
public interface DocRenderer
Deprecated.Since 1.1, useDocumentRenderer
instead.Base renderer interface for thedocument
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ROLE
Deprecated.Plexus lookup.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getOutputExtension()
Deprecated.Get the output extension supportedvoid
render(java.io.File siteDirectory, java.io.File outputDirectory)
Deprecated.Render all files from a site directory to an output directoryvoid
render(java.io.File siteDirectory, java.io.File outputDirectory, java.io.File documentDescriptor)
Deprecated.Render a document depending a context and a document descriptor
-
-
-
Method Detail
-
render
void render(java.io.File siteDirectory, java.io.File outputDirectory) throws DocumentRendererException, java.io.IOException
Deprecated.Render all files from a site directory to an output directory- Parameters:
siteDirectory
- the input directory contains files to be generatedoutputDirectory
- the output directory where files are generated- Throws:
DocumentRendererException
- if anyjava.io.IOException
- if any
-
render
void render(java.io.File siteDirectory, java.io.File outputDirectory, java.io.File documentDescriptor) throws DocumentRendererException, java.io.IOException
Deprecated.Render a document depending a context and a document descriptor- Parameters:
siteDirectory
- the input directory contains files to be generatedoutputDirectory
- the output directory where file are generateddocumentDescriptor
- the document descriptor- Throws:
DocumentRendererException
- if anyjava.io.IOException
- if any
-
getOutputExtension
java.lang.String getOutputExtension()
Deprecated.Get the output extension supported- Returns:
- the ouput extension supported
-
-