Alphabetical Index

A B C D E F G I J L M N O P R S T U V X

A

addAttribute(String,String,String,String,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Add an attribute to the end of the list.
adup(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
adup(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
adup(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports an attribute name without a value.
aname(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
aname(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
aname(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports an attribute name; a value will follow.
anonymize() - method in class org.ccil.cowan.tagsoup.Element
Make this element anonymous.
attribute(String,String,String,String) - method in class org.ccil.cowan.tagsoup.Schema
Add or replace a default attribute for an element type in this schema.
AttributesImpl - class org.ccil.cowan.tagsoup.AttributesImpl
Default implementation of the Attributes interface.
AttributesImpl() - constructor for class org.ccil.cowan.tagsoup.AttributesImpl
Construct a new, empty AttributesImpl object.
AttributesImpl(Attributes) - constructor for class org.ccil.cowan.tagsoup.AttributesImpl
Copy an existing Attributes object.
atts() - method in class org.ccil.cowan.tagsoup.Element
Return the attributes as an AttributesImpl object.
atts() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the default attributes associated with this element type.
autoDetectingReader(InputStream) - method in class org.ccil.cowan.tagsoup.AutoDetector
Given an InputStream, return a suitable Reader that understands the presumed character encoding of that InputStream.
AutoDetector - interface org.ccil.cowan.tagsoup.AutoDetector
Classes which accept an InputStream and provide a Reader which figures out the encoding of the InputStream and reads characters from it should conform to this interface.
autoDetectorProperty - static field in class org.ccil.cowan.tagsoup.Parser
Specifies the AutoDetector (for encoding detection) this Parser uses.
aval(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
aval(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
aval(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports an attribute value.

B

bogonsEmptyFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will give unknown elements a content model of EMPTY; a value of "false", a content model of ANY.

C

canContain(org.ccil.cowan.tagsoup.Element) - method in class org.ccil.cowan.tagsoup.Element
Return true if the type of this element can contain the type of another element.
canContain(org.ccil.cowan.tagsoup.ElementType) - method in class org.ccil.cowan.tagsoup.ElementType
Returns true if this element type can contain another element type.
CDATA_SECTION_ELEMENTS - static field in class org.ccil.cowan.tagsoup.XMLWriter
CDATAElementsFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will treat CDATA elements specially.
cdsect(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
cdsect(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
cdsect(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the content of a CDATA section (not a CDATA element)
characters(ch[],int,int) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write character data.
characters(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
characters(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write a string of character data, with XML escaping.
clean() - method in class org.ccil.cowan.tagsoup.Element
Clean the attributes of this element.
clear() - method in class org.ccil.cowan.tagsoup.AttributesImpl
Clear the attribute list for reuse.
cmnt(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
cmnt(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
cmnt(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports a comment.
CommandLine - class org.ccil.cowan.tagsoup.CommandLine
The stand-alone TagSoup program.
comment(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
comment(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
comment(char[],int,int) - method in class org.ccil.cowan.tagsoup.XMLWriter

D

dataElement(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write an element with character data content but no attributes or Namespace URI.
dataElement(String,String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write an element with character data content but no attributes.
dataElement(String,String,String,Attributes,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write an element with character data content.
decl(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
Parsing the complete XML Document Type Definition is way too complex, but for many simple cases we can extract something useful from it.
decl(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
decl(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports a <!....> declaration - typically a DOCTYPE
defaultAttributesFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will return default attribute values for missing attributes that have default values.
DOCTYPE_PUBLIC - static field in class org.ccil.cowan.tagsoup.XMLWriter
DOCTYPE_SYSTEM - static field in class org.ccil.cowan.tagsoup.XMLWriter

E

Element - class org.ccil.cowan.tagsoup.Element
The internal representation of an actual element (not an element type).
Element(org.ccil.cowan.tagsoup.ElementType,boolean) - constructor for class org.ccil.cowan.tagsoup.Element
Return an Element from a specified ElementType.
ElementType - class org.ccil.cowan.tagsoup.ElementType
This class represents an element type in the schema.
elementType(String,int,int,int) - method in class org.ccil.cowan.tagsoup.Schema
Add or replace an element type for this schema.
ElementType(String,int,int,int,org.ccil.cowan.tagsoup.Schema) - constructor for class org.ccil.cowan.tagsoup.ElementType
Construct an ElementType: but it's better to use Schema.element() instead.
emptyElement(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Add an empty element without a Namespace URI, qname or attributes.
emptyElement(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Add an empty element without a qname or attributes.
emptyElement(String,String,String,Attributes) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write an empty element.
ENCODING - static field in class org.ccil.cowan.tagsoup.XMLWriter
endCDATA() - method in class org.ccil.cowan.tagsoup.Parser
endCDATA() - method in class org.ccil.cowan.tagsoup.PYXWriter
endCDATA() - method in class org.ccil.cowan.tagsoup.XMLWriter
endDocument() - method in class org.ccil.cowan.tagsoup.PYXWriter
endDocument() - method in class org.ccil.cowan.tagsoup.XMLWriter
Write a newline at the end of the document.
endDTD() - method in class org.ccil.cowan.tagsoup.Parser
endDTD() - method in class org.ccil.cowan.tagsoup.PYXWriter
endDTD() - method in class org.ccil.cowan.tagsoup.XMLWriter
endElement(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
End an element without a Namespace URI or qname.
endElement(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
End an element without a qname.
endElement(String,String,String) - method in class org.ccil.cowan.tagsoup.PYXWriter
endElement(String,String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write an end tag.
endEntity(String) - method in class org.ccil.cowan.tagsoup.Parser
endEntity(String) - method in class org.ccil.cowan.tagsoup.PYXWriter
endEntity(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
endPrefixMapping(String) - method in class org.ccil.cowan.tagsoup.PYXWriter
entity(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
entity(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
entity(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports an entity reference or character reference.
entity(String,char) - method in class org.ccil.cowan.tagsoup.Schema
Add to or replace a character entity in this schema.
eof(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
eof(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
eof(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports EOF.
etag(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
etag(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
etag(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports an end-tag.
etag_basic(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
etag_cdata(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
externalGeneralEntitiesFeature - static field in class org.ccil.cowan.tagsoup.Parser
Reports whether this parser processes external general entities (it doesn't).
externalParameterEntitiesFeature - static field in class org.ccil.cowan.tagsoup.Parser
Reports whether this parser processes external parameter entities (it doesn't).

F

F_CDATA - static field in class org.ccil.cowan.tagsoup.Schema
F_NOFORCE - static field in class org.ccil.cowan.tagsoup.Schema
F_RESTART - static field in class org.ccil.cowan.tagsoup.Schema
flags() - method in class org.ccil.cowan.tagsoup.Element
Return the flags vector of the element's type.
flags() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the flags associated with this element type.
flush() - method in class org.ccil.cowan.tagsoup.XMLWriter
Flush the output.
forceNSDecl(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Force a Namespace to be declared on the root element.
forceNSDecl(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Force a Namespace declaration with a preferred prefix.

G

getContentHandler() - method in class org.ccil.cowan.tagsoup.Parser
getDTDHandler() - method in class org.ccil.cowan.tagsoup.Parser
getElementType(String) - method in class org.ccil.cowan.tagsoup.Schema
Get an ElementType by name.
getEntity() - method in class org.ccil.cowan.tagsoup.Parser
getEntity() - method in class org.ccil.cowan.tagsoup.PYXWriter
getEntity() - method in class org.ccil.cowan.tagsoup.ScanHandler
Returns the value of the last entity or character reference reported.
getEntity(String) - method in class org.ccil.cowan.tagsoup.Schema
Get an entity value by name.
getEntityResolver() - method in class org.ccil.cowan.tagsoup.Parser
getErrorHandler() - method in class org.ccil.cowan.tagsoup.Parser
getFeature(String) - method in class org.ccil.cowan.tagsoup.Parser
getFeature(String) - method in class org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl
Returns whether the specified property will be enabled or disabled on reader instances constructed by this factory.
getFeature(String) - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
getIndex(String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's index by qualified (prefixed) name.
getIndex(String,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's index by Namespace name.
getLength() - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return the number of attributes in the list.
getLocalName(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return an attribute's local name.
getOutputProperty(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
getParser() - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
To support SAX1 interface, we'll need to use an adapter.
getPrefix() - method in class org.ccil.cowan.tagsoup.Schema
Return the prefix of this schema.
getPrefix(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Get the current or preferred prefix for a Namespace URI.
getProperty(String) - method in class org.ccil.cowan.tagsoup.Parser
getProperty(String) - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
getQName(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return an attribute's qualified (prefixed) name.
getType(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return an attribute's type by index.
getType(String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's type by qualified (prefixed) name.
getType(String,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's type by Namespace-qualified name.
getURI() - method in class org.ccil.cowan.tagsoup.Schema
Return the URI (namespace name) of this schema.
getURI(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return an attribute's Namespace URI.
getValue(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Return an attribute's value by index.
getValue(String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's value by qualified (prefixed) name.
getValue(String,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Look up an attribute's value by Namespace-qualified name.
getXMLReader() - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
gi(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
gi(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
gi(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the general identifier (element type name) of a start-tag.

I

ignorableWhitespace(ch[],int,int) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write ignorable whitespace.
ignorableWhitespace(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
ignorableWhitespaceFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will transmit whitespace in element-only content via the SAX ignorableWhitespace callback.
ignoreBogonsFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will ignore unknown elements.
INDENT - static field in class org.ccil.cowan.tagsoup.XMLWriter
isNamespaceAware() - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
isPreclosed() - method in class org.ccil.cowan.tagsoup.Element
Return true if this element has been preclosed.
isStandaloneFeature - static field in class org.ccil.cowan.tagsoup.Parser
May be examined only during a parse, after the startDocument() callback has been completed; read-only.
isValidating() - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl

J

JAXPTest - class org.ccil.cowan.tagsoup.jaxp.JAXPTest
Trivial non-robust test class, to show that TagSoup can be accessed using JAXP interface.

L

lexicalHandlerParameterEntitiesFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the LexicalHandler will report the beginning and end of parameter entities (it won't).
lexicalHandlerProperty - static field in class org.ccil.cowan.tagsoup.Parser
Used to see some syntax events that are essential in some applications: comments, CDATA delimiters, selected general entity inclusions, and the start and end of the DTD (and declaration of document element name).
localName() - method in class org.ccil.cowan.tagsoup.Element
Return the local name of the element's type.
localName() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the local name of this element type.
localName(String) - method in class org.ccil.cowan.tagsoup.ElementType
Return a local name from a Qname.

M

M_ANY - static field in class org.ccil.cowan.tagsoup.Schema
M_EMPTY - static field in class org.ccil.cowan.tagsoup.Schema
M_PCDATA - static field in class org.ccil.cowan.tagsoup.Schema
M_ROOT - static field in class org.ccil.cowan.tagsoup.Schema
main(String[]) - static method in class org.ccil.cowan.tagsoup.CommandLine
Main method.
main(String[]) - static method in class org.ccil.cowan.tagsoup.jaxp.JAXPTest
main(String[]) - static method in class org.ccil.cowan.tagsoup.PYXScanner
MEDIA_TYPE - static field in class org.ccil.cowan.tagsoup.XMLWriter
memberOf() - method in class org.ccil.cowan.tagsoup.Element
Return the member-of vector of the element's type.
memberOf() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the content models to which this element type belongs.
METHOD - static field in class org.ccil.cowan.tagsoup.XMLWriter
model() - method in class org.ccil.cowan.tagsoup.Element
Return the content model vector of the element's type.
model() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the content models of this element type.

N

name() - method in class org.ccil.cowan.tagsoup.Element
Return the name of the element's type.
name() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the name of this element type.
namespace() - method in class org.ccil.cowan.tagsoup.Element
Return the namespace name of the element's type.
namespace() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the namespace name of this element type.
namespace(String,boolean) - method in class org.ccil.cowan.tagsoup.ElementType
Return a namespace name from a Qname.
namespacePrefixesFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that XML qualified names (with prefixes) and attributes (including xmlns* attributes) will be available.
namespacesFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates namespace URIs and unprefixed local names for element and attribute names will be available.
newInstance(Map) - static method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
newSAXParser() - method in class org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl
Creates a new instance of SAXParser using the currently configured factory parameters.
next() - method in class org.ccil.cowan.tagsoup.Element
Return the next element in an element stack or queue.
normalize(String) - static method in class org.ccil.cowan.tagsoup.ElementType
Normalize an attribute value (ID-style).

O

OMIT_XML_DECLARATION - static field in class org.ccil.cowan.tagsoup.XMLWriter

P

parent() - method in class org.ccil.cowan.tagsoup.Element
Return the parent element type of the element's type.
parent() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the parent element type of this element type.
parent(String,String) - method in class org.ccil.cowan.tagsoup.Schema
Specify natural parent of an element in this schema.
parse(InputSource) - method in class org.ccil.cowan.tagsoup.Parser
parse(InputSource) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
parse(String) - method in class org.ccil.cowan.tagsoup.Parser
parse(String) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
Parser - class org.ccil.cowan.tagsoup.Parser
The SAX parser class.
pcdata(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
pcdata(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
pcdata(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports character content.
pi(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
pi(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
pi(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the data part of a processing instruction.
pitarget(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
pitarget(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
pitarget(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the target part of a processing instruction.
preclose() - method in class org.ccil.cowan.tagsoup.Element
Force this element to preclosed status, meaning that an end-tag has been seen but the element cannot yet be closed for structural reasons.
processingInstruction(String,String) - method in class org.ccil.cowan.tagsoup.PYXWriter
processingInstruction(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write a processing instruction.
PYXScanner - class org.ccil.cowan.tagsoup.PYXScanner
A Scanner that accepts PYX format instead of HTML.
PYXWriter - class org.ccil.cowan.tagsoup.PYXWriter
A ContentHandler that generates PYX format instead of XML.
PYXWriter(Writer) - constructor for class org.ccil.cowan.tagsoup.PYXWriter

R

removeAttribute(int) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Remove an attribute from the list.
reset() - method in class org.ccil.cowan.tagsoup.XMLWriter
Reset the writer.
resetDocumentLocator(String,String) - method in class org.ccil.cowan.tagsoup.PYXScanner
Reset the embedded locator.
resetDocumentLocator(String,String) - method in class org.ccil.cowan.tagsoup.Scanner
Reset the embedded locator.
resolveDTDURIsFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that system IDs in declarations will be absolutized (relative to their base URIs) before reporting.
restartElementsFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will attempt to restart the restartable elements.

S

SAX1ParserAdapter - class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
This is a simpler adapter class that allows using SAX1 interface on top of basic SAX2 implementation, such as TagSoup.
SAX1ParserAdapter(XMLReader) - constructor for class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
SAXFactoryImpl - class org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl
This is a simple implementation of JAXP SAXParserFactory, to allow easier integration of TagSoup with the default JDK xml processing stack.
SAXFactoryImpl() - constructor for class org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl
SAXParserImpl - class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
This is a simple implementation of JAXP SAXParser, to allow easier integration of TagSoup with the default JDK xml processing stack.
SAXParserImpl() - constructor for class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
scan(Reader,org.ccil.cowan.tagsoup.ScanHandler) - method in class org.ccil.cowan.tagsoup.PYXScanner
Invoke a scanner.
scan(Reader,org.ccil.cowan.tagsoup.ScanHandler) - method in class org.ccil.cowan.tagsoup.Scanner
Invoke a scanner.
ScanHandler - interface org.ccil.cowan.tagsoup.ScanHandler
An interface that Scanners use to report events in the input stream.
Scanner - interface org.ccil.cowan.tagsoup.Scanner
An interface allowing Parser to invoke scanners.
scannerProperty - static field in class org.ccil.cowan.tagsoup.Parser
Specifies the Scanner object this Parser uses.
Schema - class org.ccil.cowan.tagsoup.Schema
Abstract class representing a TSSL schema.
schema() - method in class org.ccil.cowan.tagsoup.ElementType
Returns the schema which this element type is associated with.
schemaProperty - static field in class org.ccil.cowan.tagsoup.Parser
Specifies the Schema object this Parser uses.
Set an attribute in the list.
Sets an attribute and its value into an AttributesImpl object.
setAttribute(String,String,String) - method in class org.ccil.cowan.tagsoup.Element
Set an attribute and its value into this element.
setAttribute(String,String,String) - method in class org.ccil.cowan.tagsoup.ElementType
Sets an attribute and its value into this element type.
setAttributes(Attributes) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Copy an entire Attributes object.
setContentHandler(ContentHandler) - method in class org.ccil.cowan.tagsoup.Parser
setDocumentHandler(DocumentHandler) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
setDocumentLocator(Locator) - method in class org.ccil.cowan.tagsoup.PYXWriter
setDTDHandler(DTDHandler) - method in class org.ccil.cowan.tagsoup.Parser
setDTDHandler(DTDHandler) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
setEntityResolver(EntityResolver) - method in class org.ccil.cowan.tagsoup.Parser
setEntityResolver(EntityResolver) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
setErrorHandler(ErrorHandler) - method in class org.ccil.cowan.tagsoup.Parser
setErrorHandler(ErrorHandler) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
setFeature(String,boolean) - method in class org.ccil.cowan.tagsoup.Parser
setFeature(String,boolean) - method in class org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl
Defines that the specified feature is to enabled/disabled (as per second argument) on reader instances created by this factory.
setFeature(String,boolean) - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
setFlags(int) - method in class org.ccil.cowan.tagsoup.ElementType
Sets the flags of this element type.
setLocale(java.util.Locale) - method in class org.ccil.cowan.tagsoup.jaxp.SAX1ParserAdapter
setLocalName(int,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Set the local name of a specific attribute.
setMemberOf(int) - method in class org.ccil.cowan.tagsoup.ElementType
Sets the content models to which this element type belongs.
setModel(int) - method in class org.ccil.cowan.tagsoup.ElementType
Sets the models of this element type.
setNext(org.ccil.cowan.tagsoup.Element) - method in class org.ccil.cowan.tagsoup.Element
Change the next element in an element stack or queue.
setOutput(Writer) - method in class org.ccil.cowan.tagsoup.XMLWriter
Set a new output destination for the document.
setOutputProperty(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
setParent(org.ccil.cowan.tagsoup.ElementType) - method in class org.ccil.cowan.tagsoup.ElementType
Sets the parent element type of this element type.
setPrefix(String) - method in class org.ccil.cowan.tagsoup.Schema
Change the prefix of this schema.
setPrefix(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Specify a preferred prefix for a Namespace URI.
setProperty(String,Object) - method in class org.ccil.cowan.tagsoup.Parser
setProperty(String,Object) - method in class org.ccil.cowan.tagsoup.jaxp.SAXParserImpl
setQName(int,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Set the qualified name of a specific attribute.
setType(int,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Set the type of a specific attribute.
setURI(int,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Set the Namespace URI of a specific attribute.
setURI(String) - method in class org.ccil.cowan.tagsoup.Schema
Change the URI (namespace name) of this schema.
setValue(int,String) - method in class org.ccil.cowan.tagsoup.AttributesImpl
Set the value of a specific attribute.
skippedEntity(String) - method in class org.ccil.cowan.tagsoup.PYXWriter
stagc(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
stagc(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
stagc(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the close of a start-tag.
stage(char[],int,int) - method in class org.ccil.cowan.tagsoup.Parser
stage(char[],int,int) - method in class org.ccil.cowan.tagsoup.PYXWriter
stage(char[],int,int) - method in class org.ccil.cowan.tagsoup.ScanHandler
Reports the close of an empty-tag.
STANDALONE - static field in class org.ccil.cowan.tagsoup.XMLWriter
startCDATA() - method in class org.ccil.cowan.tagsoup.Parser
startCDATA() - method in class org.ccil.cowan.tagsoup.PYXScanner
Signal to the scanner to start CDATA content mode.
startCDATA() - method in class org.ccil.cowan.tagsoup.PYXWriter
startCDATA() - method in class org.ccil.cowan.tagsoup.Scanner
Signal to the scanner to start CDATA content mode.
startCDATA() - method in class org.ccil.cowan.tagsoup.XMLWriter
startDocument() - method in class org.ccil.cowan.tagsoup.PYXWriter
startDocument() - method in class org.ccil.cowan.tagsoup.XMLWriter
Write the XML declaration at the beginning of the document.
startDTD(String,String,String) - method in class org.ccil.cowan.tagsoup.Parser
startDTD(String,String,String) - method in class org.ccil.cowan.tagsoup.PYXWriter
startDTD(String,String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
startElement(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Start a new element without a qname, attributes or a Namespace URI.
startElement(String,String) - method in class org.ccil.cowan.tagsoup.XMLWriter
Start a new element without a qname or attributes.
startElement(String,String,String,Attributes) - method in class org.ccil.cowan.tagsoup.PYXWriter
startElement(String,String,String,Attributes) - method in class org.ccil.cowan.tagsoup.XMLWriter
Write a start tag.
startEntity(String) - method in class org.ccil.cowan.tagsoup.Parser
startEntity(String) - method in class org.ccil.cowan.tagsoup.PYXWriter
startEntity(String) - method in class org.ccil.cowan.tagsoup.XMLWriter
startPrefixMapping(String,String) - method in class org.ccil.cowan.tagsoup.PYXWriter
stringInterningFeature - static field in class org.ccil.cowan.tagsoup.Parser
Has a value of "true" if all XML names (for elements, prefixes, attributes, entities, notations, and local names), as well as Namespace URIs, will have been interned using java.lang.String.intern.

T

translateColonsFeature - static field in class org.ccil.cowan.tagsoup.Parser
A value of "true" indicates that the parser will translate colons into underscores in names.
type() - method in class org.ccil.cowan.tagsoup.Element
Return the element type.

U

unicodeNormalizationCheckingFeature - static field in class org.ccil.cowan.tagsoup.Parser
Controls whether the parser reports Unicode normalization errors as described in section 2.13 and Appendix B of the XML 1.1 Recommendation.
useAttributes2Feature - static field in class org.ccil.cowan.tagsoup.Parser
Returns "true" if the Attributes objects passed by this parser in ContentHandler.startElement() implement the org.xml.sax.ext.Attributes2 interface.
useEntityResolver2Feature - static field in class org.ccil.cowan.tagsoup.Parser
Returns "true" if, when setEntityResolver is given an object implementing the org.xml.sax.ext.EntityResolver2 interface, those new methods will be used.
useLocator2Feature - static field in class org.ccil.cowan.tagsoup.Parser
Returns "true" if the Locator objects passed by this parser in ContentHandler.setDocumentLocator() implement the org.xml.sax.ext.Locator2 interface.

V

validationFeature - static field in class org.ccil.cowan.tagsoup.Parser
Controls whether the parser is reporting all validity errors (We don't report any validity errors.)
VERSION - static field in class org.ccil.cowan.tagsoup.XMLWriter

X

XML11Feature - static field in class org.ccil.cowan.tagsoup.Parser
Returns "true" if the parser supports both XML 1.1 and XML 1.0.
xmlnsURIsFeature - static field in class org.ccil.cowan.tagsoup.Parser
Controls whether, when the namespace-prefixes feature is set, the parser treats namespace declaration attributes as being in the http://www.w3.org/2000/xmlns/ namespace.
XMLWriter - class org.ccil.cowan.tagsoup.XMLWriter
Filter to write an XML document from a SAX event stream.
XMLWriter() - constructor for class org.ccil.cowan.tagsoup.XMLWriter
Create a new XML writer.
XMLWriter(Writer) - constructor for class org.ccil.cowan.tagsoup.XMLWriter
Create a new XML writer.
XMLWriter(XMLReader) - constructor for class org.ccil.cowan.tagsoup.XMLWriter
Create a new XML writer.
XMLWriter(XMLReader,Writer) - constructor for class org.ccil.cowan.tagsoup.XMLWriter
Create a new XML writer.

Licence: Academic Free License 3.0 and/or GPL 2.0