Package org.jitterbit.integration.data.structure

Examples of org.jitterbit.integration.data.structure.SimpleTextStructure


        return s;
    }

    private TextStructure createSimpleStructure() {
        assert (completedSegments.size() == 1);
        SimpleTextStructure s = new SimpleTextStructure(name, false);
        Segment segment = completedSegments.get(0);
        segment.setName("");
        segment.setParentName("");
        s.setSegment(segment);
        return s;
    }
View Full Code Here


            }
        }
    }

    private void updateFlatStructure() {
        SimpleTextStructure flat = (SimpleTextStructure) doc.getDataStructure();
        for (Field f : flat.getSegment().getFieldList()) {
            f.makeFixedWidth();
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.structure.SimpleTextStructure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.