Java Implementation
The Java implementation of the design is composed of the source files listed below.
X12ToXML.java: the main routine for the Java application with an X12 interchange as source
X12SourceConverter.java (in package net.babelblaster.convert): the class that drives conversion from X12 to XML
EDIRecordReader.java (in package net.babelblaster.record): the base class that handles reading EDI segments and converting to XML
X12RecordReader.java (in package net.babelblaster.record): the class that handles reading X12 control segments
XMLToX12.java: the main routine for the Java application with an X12 interchange as target
X12TargetConverter.java (in package net.babelblaster.convert): the class that drives conversion from XML to an X12 ...