Uses of Class
convert.relaxng.output.xsd.basic.SimpleType

Packages that use SimpleType
convert.relaxng.output.xsd.basic   
 

Uses of SimpleType in convert.relaxng.output.xsd.basic
 

Subclasses of SimpleType in convert.relaxng.output.xsd.basic
 class SimpleTypeList
           
 class SimpleTypeRef
           
 class SimpleTypeRestriction
           
 class SimpleTypeUnion
           
 

Methods in convert.relaxng.output.xsd.basic that return SimpleType
 SimpleType SimpleTypeList.getItemType()
           
 SimpleType ComplexTypeSimpleContent.getSimpleType()
           
 SimpleType SimpleTypeDefinition.getSimpleType()
           
 SimpleType Attribute.getType()
           
 SimpleType OptionalAttribute.getType()
           
abstract  SimpleType SingleAttributeUse.getType()
           
 SimpleType SchemaTransformer.visitList(SimpleTypeList t)
           
 SimpleType SchemaTransformer.visitRef(SimpleTypeRef t)
           
 SimpleType SchemaTransformer.visitRestriction(SimpleTypeRestriction t)
           
 SimpleType SchemaTransformer.visitUnion(SimpleTypeUnion t)
           
 

Methods in convert.relaxng.output.xsd.basic that return types with arguments of type SimpleType
 java.util.List<SimpleType> SimpleTypeUnion.getChildren()
           
 java.util.List<SimpleType> SchemaTransformer.transformSimpleTypeList(java.util.List<SimpleType> list)
           
 

Methods in convert.relaxng.output.xsd.basic with parameters of type SimpleType
 void Schema.defineSimpleType(java.lang.String name, SimpleType simpleType, SourceLocation location, Annotation annotation)
           
 void SimpleTypeDefinition.setSimpleType(SimpleType simpleType)
           
 

Method parameters in convert.relaxng.output.xsd.basic with type arguments of type SimpleType
 java.util.List<SimpleType> SchemaTransformer.transformSimpleTypeList(java.util.List<SimpleType> list)
           
 

Constructors in convert.relaxng.output.xsd.basic with parameters of type SimpleType
Attribute(SourceLocation location, Annotation annotation, Name name, SimpleType type)
          type may be null, indicating any type
ComplexTypeSimpleContent(AttributeUse attributeUses, SimpleType simpleType)
           
SimpleTypeDefinition(SourceLocation location, Annotation annotation, Schema parentSchema, java.lang.String name, SimpleType simpleType)
           
SimpleTypeList(SourceLocation location, Annotation annotation, SimpleType itemType, Occurs occurs)
           
 

Constructor parameters in convert.relaxng.output.xsd.basic with type arguments of type SimpleType
SimpleTypeUnion(SourceLocation location, Annotation annotation, java.util.List<SimpleType> children)