Package | Description |
---|---|
com.hfg.xml.xsd |
Basic code for Xsd parsing.
|
Modifier and Type | Class and Description |
---|---|
class |
XsdChoice
Representation of a choice element in an XML Schema Definition (XSD) specification.
|
class |
XsdElement
Representation of an element in an XML Schema Definition (XSD) specification.
|
class |
XsdGroup
Representation of a group in an XML Schema Definition (XSD) specification.
|
class |
XsdSequence
Representation of a sequence in an XML Schema Definition (XSD) specification.
|
Modifier and Type | Method and Description |
---|---|
XsdContent |
XsdContent.setMaxOccurs(int inValue) |
XsdContent |
XsdContent.setMinOccurs(int inValue) |
Modifier and Type | Method and Description |
---|---|
List<XsdContent> |
XsdComplexType.getContent() |
List<XsdContent> |
XsdGroup.getContent() |
List<XsdContent> |
XsdSequence.getContent() |
Set<XsdContent> |
XsdChoice.getOptions() |
Modifier and Type | Method and Description |
---|---|
XsdComplexType |
XsdComplexType.addContent(XsdContent inValue) |
XsdGroup |
XsdGroup.addContent(XsdContent inValue) |
XsdSequence |
XsdSequence.addContent(XsdContent inValue) |
XsdChoice |
XsdChoice.addOption(XsdContent inValue) |
jataylor@hairyfatguy.com