com.sun.org.apache.xerces.internal.xs.XSParticle

Here are the examples of the java api class com.sun.org.apache.xerces.internal.xs.XSParticle taken from open source projects.

1. XSDHandler#expandRelatedComplexTypeComponents()

Project: openjdk
File: XSDHandler.java
private void expandRelatedComplexTypeComponents(XSComplexTypeDecl type, Vector componentList, String namespace, Map<String, Vector> dependencies) {
    addRelatedType(type.getBaseType(), componentList, namespace, dependencies);
    expandRelatedAttributeUsesComponents(type.getAttributeUses(), componentList, namespace, dependencies);
    final XSParticle particle = type.getParticle();
    if (particle != null) {
        expandRelatedParticleComponents(particle, componentList, namespace, dependencies);
    }
}