Package org.adfemg.datacontrol.xml.provider.structure.lazy

Examples of org.adfemg.datacontrol.xml.provider.structure.lazy.ComplexTypeAdapter


public class LazyStructureProvider extends ProviderImpl implements StructureProvider {

    @Override
    public MovableStructureDefinition buildStructure(XSDNode node, String structName, TypeMapper typeMapper) {
        XSDComplexType type = (XSDComplexType) (node instanceof XSDComplexType ? node : ((XSDElement) node).getType());
        return new ComplexTypeAdapter(null, structName, typeMapper, type);
    }
View Full Code Here

TOP

Related Classes of org.adfemg.datacontrol.xml.provider.structure.lazy.ComplexTypeAdapter

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.