Package org.jitterbit.integration.client.ui.structure.editor.xsd

Examples of org.jitterbit.integration.client.ui.structure.editor.xsd.CreateXsdResult


        XmlToXsdController.install(ui);
    }

    @Override
    public void applyTo(XmlStructure structure) {
        CreateXsdResult result = getResult();
        File mainXsd = result.getMainXsd();
        structure.setFilePath(mainXsd.getName());
        ExpandedName root = result.getRootName();
        structure.setRootNodeName(root.toString());
    }
View Full Code Here


        JsonToXsdController.install(ui);
    }

    @Override
    public void applyTo(JsonStructure json) {
        CreateXsdResult result = getResult();
        File mainXsd = result.getMainXsd();
        json.setFileName(mainXsd.getName());
        ExpandedName root = result.getRootName();
        json.setRootName(root.toString());
    }
View Full Code Here

    /**
     * Returns the JSON structure defined in this page.
     */
    @Override
    public JsonStructure getDefinedStructure() {
        CreateXsdResult result = getResult();
        File mainXsd = result.getMainXsd();
        ExpandedName root = result.getRootName();
        return new JsonStructure(mainXsd.getName(), root.toString());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.structure.editor.xsd.CreateXsdResult

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.