Uses of Class
org.foray.core.FOrayException

Packages that use FOrayException
org.foray.app Application classes used for running FOray both on the command line and embedded in other applications. 
org.foray.app.test Classes useful for testing the FOray application and its various modules. 
org.foray.core The core processing classes for the application as a whole. 
org.foray.demo.embed Classes useful for demonstrating FOray embedded in other applications. 
org.foray.demo.servlet Classes demonstrating use of FOray as a servlet. 
 

Uses of FOrayException in org.foray.app
 

Methods in org.foray.app that throw FOrayException
abstract  InputSource Starter.getInputSource()
          Returns the input source.
 InputSource CommandLineStarter.getInputSource()
           
 Starter CommandLineOptions.getStarter()
          Returns the starter to use for starting the application.
 void Options.loadUserconfiguration(InputSource userConfigSource)
          Loades a user configuration from an InputSource.
 void Options.loadUserconfiguration(URL userConfigFile)
          Loads a user configuration from a URL.
static AreaTreeFactory4a FOraySpecific.makeAreaTreeFactory(org.apache.commons.logging.Log logger)
          Make a standard AreaTreeFactory instance for use in FOray.
static org.axsl.font.FontServer FOraySpecific.makeFontServer(org.apache.commons.logging.Log logger, SessionConfig configuration)
          Make a standard FontServer instance for use in FOray.
static FOraySession FOraySpecific.makeFOraySession(SessionConfig sessionConfig)
          Creates a new FOraySession instance configured with default servers and factories.
static org.axsl.fo.FoTreeFactory FOraySpecific.makeFOTreeFactory(org.apache.commons.logging.Log logger, SessionConfig configuration, org.axsl.font.FontServer fontServer, org.axsl.graphic.GraphicServer graphicServer, org.axsl.text.TextServer textServer, org.axsl.hyphen.HyphenationServer hyphenationServer)
          Make a standard FOTreeFactory instance for use in FOray.
static org.axsl.graphic.GraphicServer FOraySpecific.makeGraphicServer(org.apache.commons.logging.Log logger)
          Make a standard GraphicServer instance for use in FOray.
static PioneerFactory FOraySpecific.makeLayoutFactory(org.apache.commons.logging.Log logger)
          Make a standard LayoutFactory instance for use in FOray.
static org.axsl.output.OutputTarget OutputTargetFactory.makeOutputTarget(OutputTargetType rendererType, OutputConfig outputOptions, OutputStream outputStream, org.apache.commons.logging.Log logger, org.axsl.graphic.GraphicServer graphicServer)
          Factory method that makes a new Renderer instance for the standard renderers.
static org.axsl.speech.SpeechServer FOraySpecific.makeSpeechServer()
          Make a standard SpeechServer instance for use in FOray.
static org.axsl.text.TextServer FOraySpecific.makeTextServer(org.apache.commons.logging.Log logger, org.axsl.hyphen.HyphenationServer hyphenServer)
          Make a standard TextServer instance for use in FOray.
abstract  void Starter.run()
          Runs the process.
 void PrintStarter.run()
           
 void CommandLineStarter.run()
           
 void AWTStarter.run()
           
 

Constructors in org.foray.app that throw FOrayException
AWTStarter(SessionConfig sessionConfig, OutputConfig renderConfig, CommandLineOptions commandLineOptions)
          Constructor.
CommandLineStarter(SessionConfig sessionConfig, OutputConfig outputConfig, CommandLineOptions commandLineOptions)
          Constructor.
Options(SessionConfig sessionConfig, OutputConfig renderConfig, URL userConfigFile)
          Constructor for case when the user configuration file is known.
PrintStarter(SessionConfig sessionConfig, OutputConfig renderConfig, CommandLineOptions options)
          Constructor.
Starter(org.apache.commons.logging.Log logger, SessionConfig sessionConfig, OutputConfig renderConfig)
          Constructor.
 

Uses of FOrayException in org.foray.app.test
 

Methods in org.foray.app.test that throw FOrayException
protected  void TestConverter.runTest(Node testcase, Node test)
          Run a particular test.
protected  void TestConverter.runTestCase(Node tcase)
          Run a test case.
 Map<String,Boolean> TestConverter.runTests(String fname, String dest)
          Run the Tests.
 

Uses of FOrayException in org.foray.core
 

Methods in org.foray.core that throw FOrayException
 void ConfigurationParser.parseDocument()
          Parses the encapsulated SAX InputSource and updates the encapsulated Configuration instances accordingly.
 void FOraySession.process()
          Iterates through the collection of FOrayDocuments to be processed, and processes each one.
 void FOrayDocument.process()
          Process the target.
 void FOrayDocument.processTarget(FOrayTarget target)
          Process a given target by building the formatting object tree from the input.
 void FOrayTarget.render(org.axsl.fo.fo.PageSequence pageSequence)
          Outputs the PageSequence.
 void FOrayDocument.run()
          Runs the formatting and renderering process using the previously set inputsource and outputstream.
 void FOrayDocument.setTarget(FOrayTarget target)
          Sets the target of this document.
 void FOrayTarget.startRenderer()
          Starts the output processing.
 

Constructors in org.foray.core that throw FOrayException
ConfigurationParser(SessionConfig sessionConfig, Configuration outputConfig, InputSource source)
          Constructor.
FOrayDocument(FOraySession session, Document domDocument)
          Constructor for processing a DOM Document containing an FO document.
FOrayDocument(FOraySession session, InputSource inputSource, XMLReader parser)
          Constructor for processing a SAX InputSource containing an FO document.
FOrayDocument(FOraySession session, Transformer jaxpTransformer, Source jaxpSource)
          Constructor for processing a semantic XML document using a JAXP Transformer.
FOrayDocument(FOraySession session, URL xmlInput, URL xsltInput)
          Constructor for JAXP processing, using supplied URLs to the xml and xslt input.
FOraySession(org.apache.commons.logging.Log logger, SessionConfig configuration, org.axsl.font.FontServer fontServer, org.axsl.hyphen.HyphenationServer hyphenServer, org.axsl.text.TextServer textServer, org.axsl.graphic.GraphicServer graphicServer, org.axsl.speech.SpeechServer speechServer, org.axsl.fo.FoTreeFactory foTreeFactory, org.axsl.area.AreaTreeFactory areaTreeFactory, org.axsl.layout.LayoutFactory layoutFactory)
          Constructor.
FOrayTarget(FOrayDocument document, org.axsl.output.OutputTarget outputTarget, org.axsl.layout.Layout layout, OutputStream outputStream)
          Constructor.
 

Uses of FOrayException in org.foray.demo.embed
 

Methods in org.foray.demo.embed that throw FOrayException
 void DemoFO2PDF.convertFO2PDF(URL fo, File pdf)
          Demonstration of a conversion from FO to PDF.
 void DemoObj2PDF.convertProjectTeam2PDF(ProjectTeam team, File xslt, File pdf)
          Demonstration converting the Project Team data to a PDF.
 void DemoXML2PDF.convertXML2PDF(File xml, File xslt, File pdf)
          Demonstration of Conversion from XSL to PDF.
 void DemoAWTViewer.viewFO(URL fo)
          Views an FO document.
 

Uses of FOrayException in org.foray.demo.servlet
 

Methods in org.foray.demo.servlet that throw FOrayException
protected  FOrayDocument AbstractDemoServlet.setupJAXPDocument(File xmlFile, File xslFile, FOraySession session)
          Creates the FOrayDocument using JAXP.
protected  FOrayDocument AbstractDemoServlet.setupSAXDocument(FOraySession session, InputSource inputSource)
          Creates the FOrayDocument using normal SAX processing.
protected  FOraySession AbstractDemoServlet.setupSession(javax.servlet.http.HttpServletResponse response)
          Creates the FOraySession.
 



Copyright © 2017. All rights reserved.