Package com.ipc.oce.xml.oc

Examples of com.ipc.oce.xml.oc.OCXSComponentFixedList


    OCXMLSchemaSet schemaSet = factory.exportXMLSchema(sSchema);
    System.out.println("Schema set size: " + schemaSet.size());
    OCXMLSchema schema = schemaSet.getSchema(0);
    System.out.println("Schema component type: " + schema.getComponentType());
   
    OCXSComponentFixedList schemaComponents = schema.getComponents();
    int schemaElements = schemaComponents.size();
    System.out.println("Schema {" + sSchema + "} contains " + schemaElements + " elements");
   
    OCXSBasicComponent basicComponent = schemaComponents.get(0);
    System.out.println("isType: " + basicComponent.isTypeOf(OCXSComponentType.IMPORT));
   
   
    StaticFieldInstance sfi = app.getStaticFields("XSComponentType.Annotation");
    System.out.println(sfi);
View Full Code Here

TOP

Related Classes of com.ipc.oce.xml.oc.OCXSComponentFixedList

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.