Uses of Interface
xmltorng.framework.document.relaxng.Pattern

Packages that use Pattern
xmltorng.document.relaxng.impl   
xmltorng.framework.document.relaxng   
xmltorng.i2s.framework   
xmltorng.i2s.impl   
xmltorng.i2s.util   
 

Uses of Pattern in xmltorng.document.relaxng.impl
 

Classes in xmltorng.document.relaxng.impl that implement Pattern
 class AttributeImpl
           
 class DataImpl
           
 class EmptyPatternImpl
           
 class GroupPatternImpl
           
 class ListPatternImpl
           
 class NonEmptyPatternImpl
           
 class RefImpl
           
 class TextImpl
           
 class ValueImpl
           
 

Fields in xmltorng.document.relaxng.impl declared as Pattern
static Pattern EmptyPatternImpl.EMPTY_PATTERN
           
 

Methods in xmltorng.document.relaxng.impl that return Pattern
 Pattern DataImpl.getExcept()
           
 Pattern AttributeImpl.getPattern()
           
 Pattern ElementDefinitionImpl.getPattern()
           
 Pattern ListPatternImpl.getPattern()
           
 Pattern SchemaImpl.getStart()
           
 

Methods in xmltorng.document.relaxng.impl with parameters of type Pattern
 void DataImpl.setExcept(Pattern except)
           
 void ElementDefinitionImpl.setPattern(Pattern pattern)
           
 void SchemaImpl.setStart(Pattern start)
           
 

Constructors in xmltorng.document.relaxng.impl with parameters of type Pattern
AttributeImpl(NameClass nameClass, Pattern pattern)
           
ListPatternImpl(Pattern pattern)
           
 

Uses of Pattern in xmltorng.framework.document.relaxng
 

Subinterfaces of Pattern in xmltorng.framework.document.relaxng
 interface Attribute
          Attribute pattern.
 interface Data
          Data pattern.
 interface GroupPattern
          Pattern class grouping "choice", "group" and "interleave" patterns.
 interface ListPattern
          List pattern.
 interface NonEmptyPattern
          Ancestor of all the non empty pattern interfaces.
 interface Ref
          Reference pattern.
 interface Text
          Pattern for text.
 interface Value
          Value pattern.
 

Methods in xmltorng.framework.document.relaxng that return Pattern
 Pattern Data.getExcept()
          Return the except patern if any else null.
 Pattern Attribute.getPattern()
          Return the pattern.
 Pattern ElementDefinition.getPattern()
          Return the pattern or null if the element definition is not allowed.
 Pattern ListPattern.getPattern()
          Return the pattern.
 Pattern Schema.getStart()
          Return the start pattern.
 

Uses of Pattern in xmltorng.i2s.framework
 

Methods in xmltorng.i2s.framework that return Pattern
 Pattern AttributesPatternCategory.fullPattern()
          Return a pattern that meets all the entered patterns.
 Pattern PatternCategory.fullPattern(java.util.Map fromNameToElementDefinition)
          Return a pattern that meets all the entered patterns.
 

Uses of Pattern in xmltorng.i2s.impl
 

Methods in xmltorng.i2s.impl that return Pattern
 Pattern AttributesPatternCategoryImpl.fullPattern()
           
 Pattern AttributesPatternCategoryImpl.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern ElementPatternCategory.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern EmptyPatternCategory.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern GroupPatternCategoryImpl.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern InterleavePatternCategoryImpl.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern OptionalRepeatableElementPatternCategory.fullPattern(java.util.Map fromNameToElementDefinition)
           
 Pattern RepeatableElementPatternCategory.fullPattern(java.util.Map fromNameToElementDefinition)
           
 

Uses of Pattern in xmltorng.i2s.util
 

Methods in xmltorng.i2s.util that return Pattern
static Pattern PatternFactory.emptyPattern()