Uses of Class
org.tquadrat.foundation.xml.builder.Namespace
Packages that use Namespace
Package
Description
Classes for builder XML elements and documents.
The internal classes for the implementation of the XML builder tools.
Several classes that are not part of the API for the XML
builder tools, but required to implement tools for other, XML-derived
languages, like SVG or HTML.
-
Uses of Namespace in org.tquadrat.foundation.xml.builder
Fields in org.tquadrat.foundation.xml.builder declared as NamespaceModifier and TypeFieldDescriptionstatic final Namespace[]
Namespace.EMPTY_Namespace_ARRAY
An empty array ofNamespace
objects.Methods in org.tquadrat.foundation.xml.builder that return types with arguments of type NamespaceModifier and TypeMethodDescriptionXMLElementFactory.getNamespace()
Returns the namespace this XML element factory was created with.Methods in org.tquadrat.foundation.xml.builder with parameters of type NamespaceModifier and TypeMethodDescriptionfinal int
default XMLDocument
XMLDocument.setNamespace
(Namespace namespace) Sets the given namespace to the root element of this document.default XMLElement
XMLElement.setNamespace
(Namespace namespace) Sets the given namespace. -
Uses of Namespace in org.tquadrat.foundation.xml.builder.internal
Methods in org.tquadrat.foundation.xml.builder.internal that return types with arguments of type NamespaceModifier and TypeMethodDescriptionfinal Collection
<Namespace> DocType.getNamespaces()
Provides access to the namespaces for this element; the returned collection is not modifiable.final Collection
<Namespace> ProcessingInstructionImpl.getNamespaces()
Provides access to the namespaces for this element; the returned collection is not modifiable.final Collection
<Namespace> XMLElementImpl.getNamespaces()
Provides access to the namespaces for this element; the returned collection is not modifiable.Methods in org.tquadrat.foundation.xml.builder.internal with parameters of type NamespaceModifier and TypeMethodDescriptionfinal XMLElement
XMLElementImpl.setNamespace
(Namespace namespace) Sets the given namespace. -
Uses of Namespace in org.tquadrat.foundation.xml.builder.spi
Fields in org.tquadrat.foundation.xml.builder.spi with type parameters of type NamespaceModifier and TypeFieldDescriptionXMLElementFactoryBase.m_Namespace
The namespace that is used by this element factory.NamespaceSupport.m_Namespaces
The namespaces for the element.Methods in org.tquadrat.foundation.xml.builder.spi that return types with arguments of type NamespaceModifier and TypeMethodDescriptionXMLElementFactoryBase.getNamespace()
Returns the namespace this XML element factory was created with.default Collection
<Namespace> Document.getNamespaces()
Provides access to the namespaces for this document (although in fact, it will be the namespaces for the root element); the returned collection is not modifiable.default Collection
<Namespace> Element.getNamespaces()
Provides access to the namespaces for this element; the returned collection is not modifiable.final Collection
<Namespace> NamespaceSupport.getNamespaces()
Provides access to the namespaces for this element; the returned collection is not modifiable.Methods in org.tquadrat.foundation.xml.builder.spi with parameters of type NamespaceModifier and TypeMethodDescriptionfinal void
NamespaceSupport.setNamespace
(Namespace... namespace) Sets the given namespace.Method parameters in org.tquadrat.foundation.xml.builder.spi with type arguments of type NamespaceModifier and TypeMethodDescriptionstatic final String
SGMLPrinter.composeAttributesString
(int indentationLevel, boolean prettyPrint, String elementName, Map<String, String> attributes, Collection<Namespace> namespaces) Returns the attributes and their values, together with the namespaces, as a single formatted string.static final String
SGMLPrinter.composeNamespaceString
(int indentationLevel, boolean prettyPrint, String elementName, Collection<Namespace> namespaces) Returns the namespaces as a single formatted string.Constructors in org.tquadrat.foundation.xml.builder.spi with parameters of type NamespaceModifierConstructorDescriptionprotected
XMLElementFactoryBase
(Namespace namespace) Creates a newXMLElementFactoryImpl
instance that uses the given namespace.