Package org.apache.xerces.xs

Examples of org.apache.xerces.xs.XSModelGroupDefinition


      XSNamedMap groups = model.getComponents(XSConstants.MODEL_GROUP_DEFINITION);
      if (ctx.trace)
         log.trace("Model groups: " + groups.getLength());
      for(int i = 0; i < groups.getLength(); ++i)
      {
         XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
         bindGlobalGroup(groupDef.getModelGroup(), ctx.sharedElements);
      }

      XSNamedMap types = model.getComponents(XSConstants.TYPE_DEFINITION);
      if (ctx.trace)
         log.trace("Model types: " + types.getLength());
View Full Code Here


      if (trace)
         log.trace("Model groups: " + groups.getLength());
      // First make sure we bind all the groups
      for(int i = 0; i < groups.getLength(); ++i)
      {
         XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
         bindGlobalGroup(groupDef);
      }
      // Now bind the particles which may have references to the other groups
      for(int i = 0; i < groups.getLength(); ++i)
      {
         XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
         bindGlobalGroupParticles(groupDef.getModelGroup());
      }

      XSNamedMap types = model.getComponents(XSConstants.TYPE_DEFINITION);
      if (trace)
         log.trace("Model types: " + types.getLength());
View Full Code Here

/*  448 */     if (this.trace) {
/*  449 */       log.trace("Model groups: " + groups.getLength());
/*      */     }
/*  451 */     for (int i = 0; i < groups.getLength(); i++)
/*      */     {
/*  453 */       XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
/*  454 */       bindGlobalGroup(groupDef);
/*      */     }
/*      */
/*  457 */     for (int i = 0; i < groups.getLength(); i++)
/*      */     {
/*  459 */       XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
/*  460 */       bindGlobalGroupParticles(groupDef.getModelGroup());
/*      */     }
/*      */
/*  463 */     XSNamedMap types = model.getComponents(3);
/*  464 */     if (this.trace)
/*  465 */       log.trace("Model types: " + types.getLength());
View Full Code Here

      XSNamedMap groups = model.getComponents(XSConstants.MODEL_GROUP_DEFINITION);
      if (ctx.trace)
         log.trace("Model groups: " + groups.getLength());
      for(int i = 0; i < groups.getLength(); ++i)
      {
         XSModelGroupDefinition groupDef = (XSModelGroupDefinition)groups.item(i);
         bindGlobalGroup(groupDef.getModelGroup(), ctx.sharedElements);
      }

      XSNamedMap types = model.getComponents(XSConstants.TYPE_DEFINITION);
      if (ctx.trace)
         log.trace("Model types: " + types.getLength());
View Full Code Here

TOP

Related Classes of org.apache.xerces.xs.XSModelGroupDefinition

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.