Examples of CreateXsdResult


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

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

        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

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

    /**
     * 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
Copyright © 2018 www.massapi.com. 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.