Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.txt2xml.cli.* (1)org.txt2xml.config.* (2)org.txt2xml.core.* (5)org.txt2xml.driver.* (4)
org.txt2xml.gui.* (3)

Package Samples:

org.txt2xml.config
org.txt2xml.core
org.txt2xml.driver
org.txt2xml.gui
org.txt2xml.cli

Classes:

Processor: Base class for agents that match part(s) of a CharSequence and write XML Elements as match(es) are found. Matched CharSequences are passed onto the sub-Processor for further work. When all matches are done, the remainder of the original CharSequence is passed to the nextProcessor. Processors act as iterators that update their internal state during a round of matching. Processors are not thread-safe. Namespaces in generated XML are not yet supported. Subclasses must override findMatch() 55 getMatchedText() 55 getRemainderText() 55 and optionally resetMatching() 55 .
RegexMatchProcessor: Matches sections of text specified by groups in a regex pattern. For example when regex='\s*(\d),\s*(\d)' this Processor will operate against " 1, 2" with the matches: "1", "2". This Processor does not repeat, so in the above case,] it will operate against "1, 2, 3" with "1", "2" and pass on the remainder ", 3" to a subsequent Processor if any.
Batch: A simple command line utility to apply a txt2xml conversion with a specified configuration to a set of files. Usage: java org.txt2xml.cli.Batch * Applies txt2xml to all source files as configured by the config_xml, saving result xml by appending .xml to the source filename.
RegexDelimitedProcessor: Repeatedly matches sections of text delimited by a regex pattern. For example, when regex=',' this Processor will operate against "1,2,3" with the following matches: "1", "2", "3".
ProcessorFactory: Create a Processor from a configuration file. Config file of the form: <txt2xml> ***** </txt2xml>
AbstractRegexProcessor: Base class for regex based Processors that can accept a pattern String and need to create a java.util.regex.Matcher before processing text.
SubCharSequence: For internal use. A CharSequence that represents a sub-sequence of some parent java.lang.CharSequence.
StreamDriver: Sends XML from a Processor to a Stream via a null Transformer used as a serializer.
JdomDriver: Sends XML from a Processor into a JDOM document. Note: this is not tested
DomDriver: Sends XML from a Processor into a DOM document. Note: this is not tested
SaxDriver: Use the XML output from a Processor to drive a SAX ContentHandler.
ConfigException
GuiModel
GuiController
GuiView

Home | Contact Us | Privacy Policy | Terms of Service