Package org.apache.tuscany.model.assembly

Examples of org.apache.tuscany.model.assembly.ModuleFragment


        // Load the module file
        Module module=loadModule(moduleUri);
        // Load the sca.fragment files
        if (moduleFragmentUris!=null) {
            for (URL moduleFragmentUri : moduleFragmentUris) {
                ModuleFragment moduleFragment=loadModuleFragment(moduleFragmentUri);
                module.getModuleFragments().add(moduleFragment);
            }
        }

        // Create the module component
View Full Code Here


    public QName getXMLType() {
        return AssemblyConstants.MODULE_FRAGMENT;
    }

    public ModuleFragment load(XMLStreamReader reader, LoaderContext loaderContext) throws XMLStreamException, ConfigurationLoadException {
        ModuleFragment fragment = factory.createModuleFragment();
        loadComposite(reader, fragment, loaderContext);
        return fragment;
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.model.assembly.ModuleFragment

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.