Uses of Interface
com.jaxfront.core.schema.XMLSchema

Packages that use XMLSchema
com.jaxfront.core.dom   
com.jaxfront.core.schema   
com.jaxfront.core.schema.impl   
com.jaxfront.core.type   
com.jaxfront.core.util.io.cache   
com.jaxfront.core.xpath.schema   
com.jaxfront.swing.ui.editor   
 

Uses of XMLSchema in com.jaxfront.core.dom
 

Methods in com.jaxfront.core.dom that return XMLSchema
 XMLSchema Document.getSchema()
          Returns the XML schema for this DOM.
 

Methods in com.jaxfront.core.dom with parameters of type XMLSchema
static java.lang.String CodeTables.createCacheKey(XMLSchema schema, java.lang.String url, java.net.URL xuiURL)
           
static boolean DOMHelper.equalsTypeElement(XMLSchema schema, org.w3c.dom.Node instanceElement, Type aType, boolean ignoreNS)
           
static boolean DOMHelper.equalsTypeElement(XMLSchema schema, java.lang.String defaultNS, org.w3c.dom.Node instanceElement, java.lang.String typeName, java.lang.String typeNameSpace, boolean ignoreNS)
           
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, java.lang.String name)
          Returns the first child element whith a given name.
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, java.lang.String[] name)
          Returns the first child element which maps to one of the names passed in a String array.
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, java.lang.String[] name, int index)
          Returns the first child element which maps to one of the names passed in a String array.
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, java.lang.String name, int index)
          Returns the first child element whith a given name.
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, java.lang.String namespace, java.lang.String defaultNS, java.lang.String name, int index)
          Returns the first child element which maps to one of the names passed in a String array.
static org.w3c.dom.Element DOMHelper.getChild(XMLSchema schema, org.w3c.dom.Element element, Type aType)
           
static java.util.List DOMHelper.getChildren(XMLSchema schema, org.w3c.dom.Element element)
          Returns a list of child elements.
static java.util.List DOMHelper.getChildren(XMLSchema schema, org.w3c.dom.Element element, java.lang.String name)
          Returns a list of child elements for a given name.
static java.util.List DOMHelper.getChildren(XMLSchema schema, org.w3c.dom.Element element, java.lang.String namespace, java.lang.String defaultNS, java.lang.String name)
          Returns a list of child elements for a given name.
static java.util.List DOMHelper.getChildren(XMLSchema schema, org.w3c.dom.Element element, Type aType)
          Returns a list of child elements for a given name.
static java.lang.String DOMHelper.getChildText(XMLSchema schema, org.w3c.dom.Element element, java.lang.String name)
          Returns the text content for a given element a given child name.
static java.net.URL CodeTables.getCodeSetURL(XMLSchema schema, java.lang.String url)
           
static java.lang.String DOMHelper.getQualifiedElementName(XMLSchema schema, org.w3c.dom.Element element)
           
static java.lang.String DOMHelper.getQualifiedElementName(XMLSchema schema, org.w3c.dom.Node element)
           
 boolean CodeTables.initialize(XMLSchema schema, java.lang.String url)
           
 boolean CodeTables.initialize(XMLSchema schema, java.lang.String url, java.net.URL xuiURL)
          Initializes the codeset with a String representing the codeset file location.
static void DOMHelper.merge(XMLSchema schema, org.w3c.dom.Node originalParentNode, org.w3c.dom.Node nodeToMerge)
           
 

Constructors in com.jaxfront.core.dom with parameters of type XMLSchema
CodeTables(XMLSchema schema)
          Creates a CodeTable for a specific XMLSchema out of a String representing an URL.
Document(XMLSchema schema, Type rootType)
          Creates a JAXFront DOM for a specific XMLSchema and root node.
Document(XMLSchema schema, Type rootType, java.util.Hashtable params)
          Creates a JAXFront DOM for a specific XMLSchema and root node.
 

Uses of XMLSchema in com.jaxfront.core.schema
 

Methods in com.jaxfront.core.schema that return XMLSchema
 XMLSchema XMLSchemaBuilder.build(java.lang.String context, org.w3c.dom.ls.LSInput xsdURL, org.apache.xerces.xni.parser.XMLEntityResolver resolver, java.lang.String rootName)
           
 XMLSchema XMLSchemaBuilder.build(java.lang.String xsdString, java.lang.String rootName)
          Factory method for creating new XML Schemas based on a XML Schema Stream and a root name.
 XMLSchema XMLSchemaBuilder.build(java.lang.String context, java.net.URL xsdURL, java.lang.String rootName)
          Factory method for creating new XML Schemas based on a URL and a root name.
 XMLSchema XMLSchemaBuilder.build(java.lang.String context, java.net.URL xsdURL, java.lang.String rootName, java.util.Hashtable domArgs)
          Factory method for creating new XML Schemas based on a URL and a root name.
 XMLSchema SchemaNode.getSchema()
          Returns the whole XML Schema definition.
 

Methods in com.jaxfront.core.schema with parameters of type XMLSchema
 CodeTables XMLSchema.getCodeTables(XMLSchema schema, java.lang.String url, java.net.URL xuiURL)
          Returns all loaded code tables for a specific url (e.q. po.codes).
 

Uses of XMLSchema in com.jaxfront.core.schema.impl
 

Classes in com.jaxfront.core.schema.impl that implement XMLSchema
 class XMLSchemaImpl
          Represents a W3C XML Schema (wrapping oracles XML Schema: oracle.xml.parser.schema.XMLSchema Every schema is holding the root name, available code tables and all global entities.
 

Methods in com.jaxfront.core.schema.impl that return XMLSchema
 XMLSchema XMLSchemaBuilderImpl.build(java.lang.String context, org.w3c.dom.ls.LSInput input, org.apache.xerces.xni.parser.XMLEntityResolver entityResolver, java.lang.String rootName)
           
 XMLSchema XMLSchemaBuilderImpl.build(java.lang.String xsdString, java.lang.String rootName)
          Factory method for creating new XML Schemas based on a XML Schema Stream and a root name.
 XMLSchema XMLSchemaBuilderImpl.build(java.lang.String context, java.net.URL xsdURL, java.lang.String rootName)
          Factory method for creating new XML Schemas based on a context, URL and a root name.The XML Schema is cached with xsdURL as key.
 XMLSchema XMLSchemaBuilderImpl.build(java.lang.String context, java.net.URL xsdURL, java.lang.String rootName, java.util.Hashtable domArgs)
          Factory method for creating new XML Schemas based on a context, URL and a root name.The XML Schema is cached with xsdURL as key.
 XMLSchema SchemaNodeImpl.getSchema()
          Returns the whole XML Schema definition.
 

Methods in com.jaxfront.core.schema.impl with parameters of type XMLSchema
 CodeTables XMLSchemaImpl.getCodeTables(XMLSchema schema, java.lang.String url, java.net.URL xuiURL)
          Returns all loaded code tables for a specific url (e.q. po.codes).
 

Constructors in com.jaxfront.core.schema.impl with parameters of type XMLSchema
SchemaComplexTypeImpl(java.lang.String nameSpace, java.lang.String name, XMLSchema schema, SchemaNode element)
           
SchemaComplexTypeImpl(java.lang.String nameSpace, java.lang.String name, org.apache.xerces.xs.XSAttributeGroupDefinition attrGroup, XMLSchema schema, SchemaNode element)
          Creates a SchemaComplexType based on a oracle XSDNode, a XMLSchema and a SchemaNode.
SchemaComplexTypeImpl(java.lang.String nameSpace, java.lang.String name, org.apache.xerces.xs.XSModelGroup unnamedNode, XMLSchema schema, SchemaNode element)
          Creates a SchemaComplexType based on a oracle XSDNode, a XMLSchema and a SchemaNode.
SchemaComplexTypeImpl(java.lang.String nameSpace, java.lang.String name, org.apache.xerces.xs.XSTypeDefinition node, XMLSchema schema, SchemaNode element)
          Creates a SchemaComplexType based on a oracle XSDNode, a XMLSchema and a SchemaNode.
SchemaComplexTypeImpl(org.apache.xerces.xs.XSTypeDefinition node, XMLSchema schema, SchemaNode element)
          Creates a SchemaComplexType based on a oracle XSDNode, a XMLSchema and a SchemaNode.
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, int unnamedCounter, SchemaNode parent)
          Creates an XML Schema element based on a oracle XSDNode, an XML Schema and the cardinalities of this element.
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, int unnamedCounter, java.lang.String defaultValue, java.lang.String fixedValue, SchemaNode parent, boolean isGlobal)
          Creates an XML Schema element based on a oracle XSDNode, an XML Schema and the cardinalities of this element.
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, int unnamedCounter, java.lang.String defaultValue, java.lang.String fixedValue, SchemaNode parent, boolean isGlobal, boolean initialize)
          Creates an XML Schema element based on a oracle XSDNode, an XML Schema and the cardinalities of this element.
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, SchemaNode parent)
          Creates an XML Schema element based on a oracle XSDNode, an XML Schema and the cardinalities of this element.
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, SchemaNode parent, boolean isGlobal)
           
SchemaNodeImpl(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, java.lang.String defaultValue, java.lang.String fixedValue, SchemaNode parent)
          Creates an XML Schema element based on a oracle XSDNode, an XML Schema and the cardinalities of this element.
SchemaSimpleTypeImpl(java.lang.String nameSpace, java.lang.String name, org.apache.xerces.xs.XSTypeDefinition node, XMLSchema schema, SchemaNode element)
          Creates a SchemaSimpleType based on a oracle XSDSimpleType, a XMLSchema and a SchemaNode.
SchemaSimpleTypeImpl(org.apache.xerces.xs.XSTypeDefinition node, XMLSchema schema, SchemaNode element)
          Creates a SchemaSimpleType based on a oracle XSDSimpleType, a XMLSchema and a SchemaNode.
 

Uses of XMLSchema in com.jaxfront.core.type
 

Methods in com.jaxfront.core.type with parameters of type XMLSchema
static org.w3c.dom.Element TypeMatcher.getInstancFromPossibles(XMLSchema schema, java.lang.String[] possibleNames, org.w3c.dom.Element instanceElement)
           
 

Uses of XMLSchema in com.jaxfront.core.util.io.cache
 

Methods in com.jaxfront.core.util.io.cache that return XMLSchema
 XMLSchema XMLSchemaCache.cache(java.lang.String context, java.lang.String key, XMLSchema schema)
          Cache an XMLSchema based on a key (file location url).
 XMLSchema XMLSchemaCache.cache(java.lang.String context, java.net.URL schemaURL, XMLSchema schema)
          Cache an XMLSchema based on a key (file location url).
 XMLSchema XMLSchemaCache.getCached(java.lang.String key)
          Returns the cached XMLSchema for a key if any.
 XMLSchema XMLSchemaCache.getCached(java.net.URL schemaURL)
          Returns the cached XMLSchema for a key if any.
 

Methods in com.jaxfront.core.util.io.cache with parameters of type XMLSchema
 XMLSchema XMLSchemaCache.cache(java.lang.String context, java.lang.String key, XMLSchema schema)
          Cache an XMLSchema based on a key (file location url).
 XMLSchema XMLSchemaCache.cache(java.lang.String context, java.net.URL schemaURL, XMLSchema schema)
          Cache an XMLSchema based on a key (file location url).
 void XMLSchemaCache.releaseCached(XMLSchema schema)
          Release the cache for the passed schema.
 

Uses of XMLSchema in com.jaxfront.core.xpath.schema
 

Constructors in com.jaxfront.core.xpath.schema with parameters of type XMLSchema
DummySchemaRoot(XMLSchema schema, java.lang.String name, java.util.List childs)
           
DummySchemaRoot(org.apache.xerces.xs.XSObject node, XMLSchema schema, int minOccurs, int maxOccurs, int unnamedCounter, SchemaNode parent)
           
 

Uses of XMLSchema in com.jaxfront.swing.ui.editor
 

Methods in com.jaxfront.swing.ui.editor with parameters of type XMLSchema
static java.util.Vector ChooserTab.getSchemaGlobals(XMLSchema schema)
          Returns the global schema elements from the given xml schema.