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

A

AbstractObjectCreationFactory - class org.apache.commons.digester.AbstractObjectCreationFactory.
Abstract base class for ObjectCreationFactory implementations.
AbstractObjectCreationFactory() - Constructor for class org.apache.commons.digester.AbstractObjectCreationFactory
 
add(String, Rule) - Method in class org.apache.commons.digester.RulesBase
Register a new Rule instance matching the specified pattern.
add(String, Rule) - Method in class org.apache.commons.digester.ExtendedBaseRules
Register a new Rule instance matching the specified pattern.
add(String, Rule) - Method in interface org.apache.commons.digester.Rules
Register a new Rule instance matching the specified pattern.
addCallMethod(String, String, int) - Method in class org.apache.commons.digester.Digester
Add an "call method" rule for the specified parameters.
addCallMethod(String, String, int, Class[]) - Method in class org.apache.commons.digester.Digester
Add an "call method" rule for the specified parameters.
addCallMethod(String, String, int, String[]) - Method in class org.apache.commons.digester.Digester
Add an "call method" rule for the specified parameters.
addCallParam(String, int) - Method in class org.apache.commons.digester.Digester
Add a "call parameter" rule for the specified parameters.
addCallParam(String, int, String) - Method in class org.apache.commons.digester.Digester
Add a "call parameter" rule for the specified parameters.
addFactoryCreate(String, ObjectCreationFactory) - Method in class org.apache.commons.digester.Digester
Add a "factory create" rule for the specified parameters.
addFactoryCreate(String, String) - Method in class org.apache.commons.digester.Digester
Add a "factory create" rule for the specified parameters.
addFactoryCreate(String, String, String) - Method in class org.apache.commons.digester.Digester
Add a "factory create" rule for the specified parameters.
addItem(Item) - Method in class org.apache.commons.digester.rss.Channel
Add an additional item.
addObjectCreate(String, String) - Method in class org.apache.commons.digester.Digester
Add an "object create" rule for the specified parameters.
addObjectCreate(String, String, String) - Method in class org.apache.commons.digester.Digester
Add an "object create" rule for the specified parameters.
addRule(String, Rule) - Method in class org.apache.commons.digester.Digester
Register a new Rule matching the specified pattern.
addRuleInstances(Digester) - Method in class org.apache.commons.digester.RuleSetBase
Add the set of Rule instances defined in this RuleSet to the specified Digester instance, associating them with our namespace URI (if any).
addRuleInstances(Digester) - Method in interface org.apache.commons.digester.RuleSet
Add the set of Rule instances defined in this RuleSet to the specified Digester instance, associating them with our namespace URI (if any).
addRuleSet(RuleSet) - Method in class org.apache.commons.digester.Digester
Register a set of Rule instances defined in a RuleSet.
addSetNext(String, String) - Method in class org.apache.commons.digester.Digester
Add a "set next" rule for the specified parameters.
addSetNext(String, String, String) - Method in class org.apache.commons.digester.Digester
Add a "set next" rule for the specified parameters.
addSetProperties(String) - Method in class org.apache.commons.digester.Digester
Add a "set properties" rule for the specified parameters.
addSetProperty(String, String, String) - Method in class org.apache.commons.digester.Digester
Add a "set property" rule for the specified parameters.
addSetTop(String, String) - Method in class org.apache.commons.digester.Digester
Add a "set top" rule for the specified parameters.
addSetTop(String, String, String) - Method in class org.apache.commons.digester.Digester
Add a "set top" rule for the specified parameters.
addSkipDay(String) - Method in class org.apache.commons.digester.rss.Channel
Add an additional skip day name.
addSkipHour(String) - Method in class org.apache.commons.digester.rss.Channel
Add an additional skip day name.
attributeName - Variable in class org.apache.commons.digester.FactoryCreateRule
The attribute containing an override class name if it is present.
attributeName - Variable in class org.apache.commons.digester.ObjectCreateRule
The attribute containing an override class name if it is present.
attributeName - Variable in class org.apache.commons.digester.CallParamRule
The attribute from which to save the parameter value

B

basicMatch(String, String) - Method in class org.apache.commons.digester.ExtendedBaseRules
Standard match.
begin(Attributes) - Method in class org.apache.commons.digester.Rule
This method is called when the beginning of a matching XML element is encountered.
begin(Attributes) - Method in class org.apache.commons.digester.FactoryCreateRule
Process the beginning of this element.
begin(Attributes) - Method in class org.apache.commons.digester.SetPropertyRule
Process the beginning of this element.
begin(Attributes) - Method in class org.apache.commons.digester.SetPropertiesRule
Process the beginning of this element.
begin(Attributes) - Method in class org.apache.commons.digester.ObjectCreateRule
Process the beginning of this element.
begin(Attributes) - Method in class org.apache.commons.digester.CallParamRule
Process the start of this element.
begin(Attributes) - Method in class org.apache.commons.digester.CallMethodRule
Process the start of this element.
body(String) - Method in class org.apache.commons.digester.Rule
This method is called when the body of a matching XML element is encountered.
body(String) - Method in class org.apache.commons.digester.CallParamRule
Process the body text of this element.
body(String) - Method in class org.apache.commons.digester.CallMethodRule
Process the body text of this element.
bodyText - Variable in class org.apache.commons.digester.Digester
The body text of the current element.
bodyText - Variable in class org.apache.commons.digester.CallParamRule
The body text collected from this element.
bodyText - Variable in class org.apache.commons.digester.CallMethodRule
The body text collected from this element.
bodyTexts - Variable in class org.apache.commons.digester.Digester
The stack of body text string buffers for surrounding elements.

C

cache - Variable in class org.apache.commons.digester.RulesBase
The set of registered Rule instances, keyed by the matching pattern.
CallMethodRule - class org.apache.commons.digester.CallMethodRule.
Rule implementation that calls a method on the top (parent) object, passing arguments collected from subsequent CallParamRule rules or from the body of this element.
CallMethodRule(Digester, String, int) - Constructor for class org.apache.commons.digester.CallMethodRule
Construct a "call method" rule with the specified method name.
CallMethodRule(Digester, String, int, Class[]) - Constructor for class org.apache.commons.digester.CallMethodRule
Construct a "call method" rule with the specified method name.
CallMethodRule(Digester, String, int, String[]) - Constructor for class org.apache.commons.digester.CallMethodRule
Construct a "call method" rule with the specified method name.
CallParamRule - class org.apache.commons.digester.CallParamRule.
Rule implementation that saves a parameter from either an attribute of this element, or from the element body, to be used in a call generated by a surrounding CallMethodRule rule.
CallParamRule(Digester, int) - Constructor for class org.apache.commons.digester.CallParamRule
Construct a "call parameter" rule that will save the body text of this element as the parameter value.
CallParamRule(Digester, int, String) - Constructor for class org.apache.commons.digester.CallParamRule
Construct a "call parameter" rule that will save the value of the specified attribute as the parameter value.
Channel - class org.apache.commons.digester.rss.Channel.
Implementation object representing a channel in the Rich Site Summary DTD, version 0.91.
Channel() - Constructor for class org.apache.commons.digester.rss.Channel
 
channelClass - Variable in class org.apache.commons.digester.rss.RSSDigester
The fully qualified class name of the Channel implementation class.
characters(char[], int, int) - Method in class org.apache.commons.digester.Digester
Process notification of character data received from the body of an XML element.
classLoader - Variable in class org.apache.commons.digester.Digester
The class loader to use for instantiating application objects.
className - Variable in class org.apache.commons.digester.FactoryCreateRule
The Java class name of the ObjectCreationFactory to be created.
className - Variable in class org.apache.commons.digester.ObjectCreateRule
The Java class name of the object to be created.
clear() - Method in class org.apache.commons.digester.RulesBase
Clear all existing Rule instance registrations.
clear() - Method in class org.apache.commons.digester.Digester
Clear the current contents of the object stack.
clear() - Method in interface org.apache.commons.digester.Rules
Clear all existing Rule instance registrations.
configure() - Method in class org.apache.commons.digester.rss.RSSDigester
Configure the parsing rules that will be used to process RSS input.
configured - Variable in class org.apache.commons.digester.rss.RSSDigester
Have we been configured yet?
copyright - Variable in class org.apache.commons.digester.rss.Channel
The channel copyright (1-100 characters).
counter - Variable in class org.apache.commons.digester.ExtendedBaseRules
Counts the entry number for the rules.
createObject(Attributes) - Method in interface org.apache.commons.digester.ObjectCreationFactory
Factory method called by FactoryCreateRule to supply an object based on the element's attributes.
createObject(Attributes) - Method in class org.apache.commons.digester.AbstractObjectCreationFactory
Factory method called by FactoryCreateRule to supply an object based on the element's attributes.
createSAXException(Exception) - Method in class org.apache.commons.digester.Digester
Create a SAX exception which also understands about the location in the digester file where the exception occurs
createSAXException(String) - Method in class org.apache.commons.digester.Digester
Create a SAX exception which also understands about the location in the digester file where the exception occurs
createSAXException(String, Exception) - Method in class org.apache.commons.digester.Digester
Create a SAX exception which also understands about the location in the digester file where the exception occurs
creationFactory - Variable in class org.apache.commons.digester.FactoryCreateRule
The object creation factory we will use to instantiate objects as required based on the attributes specified in the matched XML element.

D

debug - Variable in class org.apache.commons.digester.Digester
The debugging detail level of this component.
description - Variable in class org.apache.commons.digester.rss.Image
The image description (1-100 characters).
description - Variable in class org.apache.commons.digester.rss.TextInput
The text input description (1-100 characters).
description - Variable in class org.apache.commons.digester.rss.Item
The item description (1-500 characters).
description - Variable in class org.apache.commons.digester.rss.Channel
The channel description (1-500 characters).
digester - Variable in class org.apache.commons.digester.RulesBase
The Digester instance with which this Rules instance is associated.
digester - Variable in class org.apache.commons.digester.Rule
The Digester with which this Rule is associated.
digester - Variable in class org.apache.commons.digester.AbstractObjectCreationFactory
The associated Digester instance that was set up by FactoryCreateRule upon initialization.
Digester - class org.apache.commons.digester.Digester.
A Digester processes an XML input stream by matching a series of element nesting patterns to execute Rules that have been added prior to the start of parsing.
Digester() - Constructor for class org.apache.commons.digester.Digester
Construct a new Digester with default properties.
Digester(SAXParser) - Constructor for class org.apache.commons.digester.Digester
Construct a new Digester, allowing a SAXParser to be passed in.
Digester(XMLReader) - Constructor for class org.apache.commons.digester.Digester
Construct a new Digester, allowing an XMLReader to be passed in.
docs - Variable in class org.apache.commons.digester.rss.Channel
The channel description file URL (1-500 characters).
dtds - Variable in class org.apache.commons.digester.Digester
The URLs of DTDs that have been registered, keyed by the public identifier that corresponds.

E

end() - Method in class org.apache.commons.digester.Rule
This method is called when the end of a matching XML element is encountered.
end() - Method in class org.apache.commons.digester.FactoryCreateRule
Process the end of this element.
end() - Method in class org.apache.commons.digester.SetTopRule
Process the end of this element.
end() - Method in class org.apache.commons.digester.ObjectCreateRule
Process the end of this element.
end() - Method in class org.apache.commons.digester.CallParamRule
Process the end of this element.
end() - Method in class org.apache.commons.digester.SetNextRule
Process the end of this element.
end() - Method in class org.apache.commons.digester.CallMethodRule
Process the end of this element.
endDocument() - Method in class org.apache.commons.digester.Digester
Process notification of the end of the document being reached.
endElement(String, String, String) - Method in class org.apache.commons.digester.Digester
Process notification of the end of an XML element being reached.
endPrefixMapping(String) - Method in class org.apache.commons.digester.Digester
Process notification that a namespace prefix is going out of scope.
error(SAXParseException) - Method in class org.apache.commons.digester.Digester
Forward notification of a parsing error to the application supplied error handler (if any).
errorHandler - Variable in class org.apache.commons.digester.Digester
The application-supplied error handler that is notified when parsing warnings, errors, or fatal errors occur.
ExtendedBaseRules - class org.apache.commons.digester.ExtendedBaseRules.
Extension of RulesBase for complex schema.
ExtendedBaseRules() - Constructor for class org.apache.commons.digester.ExtendedBaseRules
 

F

factory - Static variable in class org.apache.commons.digester.Digester
The SAXParserFactory that is created the first time we need it.
FactoryCreateRule - class org.apache.commons.digester.FactoryCreateRule.
Rule implementation that uses an ObjectCreationFactory to create a new object which it pushes onto the object stack.
FactoryCreateRule(Digester, ObjectCreationFactory) - Constructor for class org.apache.commons.digester.FactoryCreateRule
Construct a factory create rule using the given, already instantiated, ObjectCreationFactory.
FactoryCreateRule(Digester, String) - Constructor for class org.apache.commons.digester.FactoryCreateRule
Construct a factory create rule that will use the specified class name to create an ObjectCreationFactory which will then be used to create an object and push it on the stack.
FactoryCreateRule(Digester, String, String) - Constructor for class org.apache.commons.digester.FactoryCreateRule
Construct a factory create rule that will use the specified class name (possibly overridden by the specified attribute if present) to create an ObjectCreationFactory, which will then be used to instantiate an object instance and push it onto the stack.
fatalError(SAXParseException) - Method in class org.apache.commons.digester.Digester
Forward notification of a fatal parsing error to the application supplied error handler (if any).
findItems() - Method in class org.apache.commons.digester.rss.Channel
Return the items for this channel.
findNamespaceURI(String) - Method in class org.apache.commons.digester.Digester
Return the currently mapped namespace URI for the specified prefix, if any; otherwise return null.
findSkipDays() - Method in class org.apache.commons.digester.rss.Channel
Return the skip days for this channel.
findSkipHours() - Method in class org.apache.commons.digester.rss.Channel
Return the skip hours for this channel.
finish() - Method in class org.apache.commons.digester.Rule
This method is called after all parsing methods have been called, to allow Rules to remove temporary data.
finish() - Method in class org.apache.commons.digester.FactoryCreateRule
Clean up after parsing is complete.
finish() - Method in class org.apache.commons.digester.CallParamRule
Clean up after parsing is complete.
finish() - Method in class org.apache.commons.digester.CallMethodRule
Clean up after parsing is complete.

G

getChannelClass() - Method in class org.apache.commons.digester.rss.RSSDigester
 
getClassLoader() - Method in class org.apache.commons.digester.Digester
Return the class loader to be used for instantiating application objects when required.
getCopyright() - Method in class org.apache.commons.digester.rss.Channel
 
getCount() - Method in class org.apache.commons.digester.Digester
Return the current depth of the element stack.
getDebug() - Method in class org.apache.commons.digester.Digester
Return the debugging detail level of this Digester.
getDescription() - Method in class org.apache.commons.digester.rss.Image
 
getDescription() - Method in class org.apache.commons.digester.rss.TextInput
 
getDescription() - Method in class org.apache.commons.digester.rss.Item
 
getDescription() - Method in class org.apache.commons.digester.rss.Channel
 
getDigester() - Method in class org.apache.commons.digester.RulesBase
Return the Digester instance with which this Rules instance is associated.
getDigester() - Method in class org.apache.commons.digester.Rule
Return the Digester with which this Rule is associated.
getDigester() - Method in interface org.apache.commons.digester.ObjectCreationFactory
Returns the Digester that was set by the FactoryCreateRule upon initialization.
getDigester() - Method in class org.apache.commons.digester.AbstractObjectCreationFactory
Returns the Digester that was set by the FactoryCreateRule upon initialization.
getDigester() - Method in interface org.apache.commons.digester.Rules
Return the Digester instance with which this Rules instance is associated.
getDocs() - Method in class org.apache.commons.digester.rss.Channel
 
getErrorHandler() - Method in class org.apache.commons.digester.Digester
Return the error handler for this Digester.
getFactory(Attributes) - Method in class org.apache.commons.digester.FactoryCreateRule
Return an instance of our associated object creation factory, creating one if necessary.
getHeight() - Method in class org.apache.commons.digester.rss.Image
 
getImage() - Method in class org.apache.commons.digester.rss.Channel
 
getImageClass() - Method in class org.apache.commons.digester.rss.RSSDigester
 
getItemClass() - Method in class org.apache.commons.digester.rss.RSSDigester
 
getItems() - Method in class org.apache.commons.digester.rss.Channel
Return the items for this channel.
getLanguage() - Method in class org.apache.commons.digester.rss.Channel
 
getLastBuildDate() - Method in class org.apache.commons.digester.rss.Channel
 
getLink() - Method in class org.apache.commons.digester.rss.Image
 
getLink() - Method in class org.apache.commons.digester.rss.TextInput
 
getLink() - Method in class org.apache.commons.digester.rss.Item
 
getLink() - Method in class org.apache.commons.digester.rss.Channel
 
getManagingEditor() - Method in class org.apache.commons.digester.rss.Channel
 
getName() - Method in class org.apache.commons.digester.rss.TextInput
 
getNamespaceAware() - Method in class org.apache.commons.digester.Digester
Return the "namespace aware" flag for parsers we create.
getNamespaceURI() - Method in class org.apache.commons.digester.RulesBase
Return the namespace URI that will be applied to all subsequently added Rule objects.
getNamespaceURI() - Method in class org.apache.commons.digester.Rule
Return the namespace URI for which this Rule is relevant, if any.
getNamespaceURI() - Method in class org.apache.commons.digester.RuleSetBase
Return the namespace URI that will be applied to all Rule instances created from this RuleSet.
getNamespaceURI() - Method in interface org.apache.commons.digester.Rules
Return the namespace URI that will be applied to all subsequently added Rule objects.
getNamespaceURI() - Method in interface org.apache.commons.digester.RuleSet
Return the namespace URI that will be applied to all Rule instances created from this RuleSet.
getParser() - Method in class org.apache.commons.digester.Digester
Return the SAXParser we will use to parse the input stream.
getPubDate() - Method in class org.apache.commons.digester.rss.Channel
 
getRating() - Method in class org.apache.commons.digester.rss.Channel
 
getReader() - Method in class org.apache.commons.digester.Digester
By setting the reader in the constructor, you can bypass JAXP and be able to use digester in Weblogic 6.0.
getRegistrations() - Method in class org.apache.commons.digester.Digester
Return the set of DTD URL registrations, keyed by public identifier.
getRuleNamespaceURI() - Method in class org.apache.commons.digester.Digester
Return the namespace URI that will be applied to all subsequently added Rule objects.
getRules() - Method in class org.apache.commons.digester.Digester
Return the Rules implementation object containing our rules collection and associated matching policy.
getRules(String) - Method in class org.apache.commons.digester.Digester
Deprecated. Call match() on the Rules implementation returned by getRules()
getSkipDays() - Method in class org.apache.commons.digester.rss.Channel
Return the skip days for this channel.
getSkipHours() - Method in class org.apache.commons.digester.rss.Channel
Return the skip hours for this channel.
getTextInput() - Method in class org.apache.commons.digester.rss.Channel
 
getTextInputClass() - Method in class org.apache.commons.digester.rss.RSSDigester
 
getTitle() - Method in class org.apache.commons.digester.rss.Image
 
getTitle() - Method in class org.apache.commons.digester.rss.TextInput
 
getTitle() - Method in class org.apache.commons.digester.rss.Item
 
getTitle() - Method in class org.apache.commons.digester.rss.Channel
 
getURL() - Method in class org.apache.commons.digester.rss.Image
 
getUseContextClassLoader() - Method in class org.apache.commons.digester.Digester
Return the boolean as to whether the context classloader should be used.
getValidating() - Method in class org.apache.commons.digester.Digester
Return the validating parser flag.
getVersion() - Method in class org.apache.commons.digester.rss.Channel
 
getWebMaster() - Method in class org.apache.commons.digester.rss.Channel
 
getWidth() - Method in class org.apache.commons.digester.rss.Image
 
getWriter() - Method in class org.apache.commons.digester.Digester
Return the logging writer for this Digester.

H

height - Variable in class org.apache.commons.digester.rss.Image
The image height in pixels (1-400).

I

ignorableWhitespace(char[], int, int) - Method in class org.apache.commons.digester.Digester
Process notification of ignorable whitespace received from the body of an XML element.
image - Variable in class org.apache.commons.digester.rss.Channel
The image describing this channel.
Image - class org.apache.commons.digester.rss.Image.
Implementation object representing an image in the Rich Site Summary DTD, version 0.91.
Image() - Constructor for class org.apache.commons.digester.rss.Image
 
imageClass - Variable in class org.apache.commons.digester.rss.RSSDigester
The fully qualified class name of the Image implementation class.
Item - class org.apache.commons.digester.rss.Item.
Implementation object representing an item in the Rich Site Summary DTD, version 0.91.
Item() - Constructor for class org.apache.commons.digester.rss.Item
 
itemClass - Variable in class org.apache.commons.digester.rss.RSSDigester
The fully qualified class name of the Item implementation class.
items - Variable in class org.apache.commons.digester.rss.Channel
The set of items associated with this Channel.

L

language - Variable in class org.apache.commons.digester.rss.Channel
The channel language (2-5 characters).
lastBuildDate - Variable in class org.apache.commons.digester.rss.Channel
The channel last build date (1-100 characters).
link - Variable in class org.apache.commons.digester.rss.Image
The image link (1-500 characters).
link - Variable in class org.apache.commons.digester.rss.TextInput
The text input link (1-500 characters).
link - Variable in class org.apache.commons.digester.rss.Item
The item link (1-500 characters).
link - Variable in class org.apache.commons.digester.rss.Channel
The channel link (1-500 characters).
locator - Variable in class org.apache.commons.digester.Digester
The Locator associated with our parser.
log(String) - Method in class org.apache.commons.digester.Digester
Log a message to the log writer associated with this context.
log(String, Throwable) - Method in class org.apache.commons.digester.Digester
Log a message and associated exception to the log writer associated with this context.
lookup(String, String) - Method in class org.apache.commons.digester.RulesBase
Return a List of Rule instances for the specified pattern that also match the specified namespace URI (if any).

M

main(String[]) - Static method in class org.apache.commons.digester.rss.RSSDigester
Test main program that parses the channel description included in this package as a static resource.
managingEditor - Variable in class org.apache.commons.digester.rss.Channel
The managing editor (1-100 characters).
match - Variable in class org.apache.commons.digester.Digester
The current match pattern for nested element processing.
match(String) - Method in class org.apache.commons.digester.RulesBase
Deprecated. Call match(namespaceURI,pattern) instead.
match(String) - Method in interface org.apache.commons.digester.Rules
Deprecated. Call match(namespaceURI,pattern) instead.
match(String, String) - Method in class org.apache.commons.digester.RulesBase
Return a List of all registered Rule instances that match the specified nesting pattern, or a zero-length List if there are no matches.
match(String, String) - Method in class org.apache.commons.digester.ExtendedBaseRules
Return a List of all registered Rule instances that match the specified nesting pattern, or a zero-length List if there are no matches.
match(String, String) - Method in interface org.apache.commons.digester.Rules
Return a List of all registered Rule instances that match the specified nesting pattern, or a zero-length List if there are no matches.
methodName - Variable in class org.apache.commons.digester.SetTopRule
The method name to call on the parent object.
methodName - Variable in class org.apache.commons.digester.SetNextRule
The method name to call on the parent object.
methodName - Variable in class org.apache.commons.digester.CallMethodRule
The method name to call on the parent object.

N

name - Variable in class org.apache.commons.digester.SetPropertyRule
The attribute that will contain the property name.
name - Variable in class org.apache.commons.digester.rss.TextInput
The text input field name (1-100 characters).
namespaceAware - Variable in class org.apache.commons.digester.Digester
Do we want a "namespace aware" parser?
namespaces - Variable in class org.apache.commons.digester.Digester
Registered namespaces we are currently processing.
namespaceURI - Variable in class org.apache.commons.digester.RulesBase
The namespace URI for which subsequently added Rule objects are relevant, or null for matching independent of namespaces.
namespaceURI - Variable in class org.apache.commons.digester.Rule
The namespace URI for which this Rule is relevant, if any.
namespaceURI - Variable in class org.apache.commons.digester.RuleSetBase
The namespace URI that all Rule instances created by this RuleSet will be associated with.
notationDecl(String, String, String) - Method in class org.apache.commons.digester.Digester
Receive notification of a notation declaration event.

O

ObjectCreateRule - class org.apache.commons.digester.ObjectCreateRule.
Rule implementation that creates a new object and pushes it onto the object stack.
ObjectCreateRule(Digester, String) - Constructor for class org.apache.commons.digester.ObjectCreateRule
Construct an object create rule with the specified class name.
ObjectCreateRule(Digester, String, String) - Constructor for class org.apache.commons.digester.ObjectCreateRule
Construct an object create rule with the specified class name and an optional attribute name containing an override.
ObjectCreationFactory - interface org.apache.commons.digester.ObjectCreationFactory.
Interface for use with FactoryCreateRule.
order - Variable in class org.apache.commons.digester.ExtendedBaseRules
The decision algorithm used (unfortunately) doesn't preserve the entry order.
org.apache.commons.digester - package org.apache.commons.digester
The Digester package provides for rules-based processing of arbitrary XML documents.
org.apache.commons.digester.rss - package org.apache.commons.digester.rss
 

P

paramCount - Variable in class org.apache.commons.digester.CallMethodRule
The number of parameters to collect from MethodParam rules.
paramIndex - Variable in class org.apache.commons.digester.CallParamRule
The zero-relative index of the parameter we are saving.
params - Variable in class org.apache.commons.digester.Digester
The parameters stack being utilized by CallMethodRule and CallParamRule rules.
paramType - Variable in class org.apache.commons.digester.SetTopRule
The Java class name of the parameter type expected by the method.
paramType - Variable in class org.apache.commons.digester.SetNextRule
The Java class name of the parameter type expected by the method.
paramTypes - Variable in class org.apache.commons.digester.CallMethodRule
The parameter types of the parameters to be collected.
parentMatch(String, String, String) - Method in class org.apache.commons.digester.ExtendedBaseRules
Matching parent.
parse(File) - Method in class org.apache.commons.digester.Digester
Parse the content of the specified file using this Digester.
parse(File) - Method in class org.apache.commons.digester.rss.RSSDigester
Parse the content of the specified file using this Digester.
parse(InputSource) - Method in class org.apache.commons.digester.Digester
Parse the content of the specified input source using this Digester.
parse(InputSource) - Method in class org.apache.commons.digester.rss.RSSDigester
Parse the content of the specified input source using this Digester.
parse(InputStream) - Method in class org.apache.commons.digester.Digester
Parse the content of the specified input stream using this Digester.
parse(InputStream) - Method in class org.apache.commons.digester.rss.RSSDigester
Parse the content of the specified input stream using this Digester.
parse(String) - Method in class org.apache.commons.digester.Digester
Parse the content of the specified URI using this Digester.
parse(String) - Method in class org.apache.commons.digester.rss.RSSDigester
Parse the content of the specified URI using this Digester.
parser - Variable in class org.apache.commons.digester.Digester
The SAXParser we will use to parse the input stream.
peek() - Method in class org.apache.commons.digester.Digester
Return the top object on the stack without removing it.
peek(int) - Method in class org.apache.commons.digester.Digester
Return the n'th object down the stack, where 0 is the top element and [getCount()-1] is the bottom element.
peekParams() - Method in class org.apache.commons.digester.Digester
Return the top object on the stack without removing it.
peekParams(int) - Method in class org.apache.commons.digester.Digester
Return the n'th object down the stack, where 0 is the top element and [getCount()-1] is the bottom element.
pop() - Method in class org.apache.commons.digester.Digester
Pop the top object off of the stack, and return it.
popParams() - Method in class org.apache.commons.digester.Digester
Pop the top object off of the stack, and return it.
processingInstruction(String, String) - Method in class org.apache.commons.digester.Digester
Process notification of a processing instruction that was encountered.
pubDate - Variable in class org.apache.commons.digester.rss.Channel
The channel publication date (1-100 characters).
push(Object) - Method in class org.apache.commons.digester.Digester
Push a new object onto the top of the object stack.
pushParams(Object) - Method in class org.apache.commons.digester.Digester
Push a new object onto the top of the object stack.

R

rating - Variable in class org.apache.commons.digester.rss.Channel
The channel rating (20-500 characters).
reader - Variable in class org.apache.commons.digester.Digester
The XMLReader used to parse digester rules.
register(String, String) - Method in class org.apache.commons.digester.Digester
Register the specified DTD URL for the specified public identifier.
registrations - Static variable in class org.apache.commons.digester.rss.RSSDigester
The set of public identifiers, and corresponding resource names, for the versions of the DTDs that we know about.
removeItem(Item) - Method in class org.apache.commons.digester.rss.Channel
Remove an item for this channel.
removeSkipDay(String) - Method in class org.apache.commons.digester.rss.Channel
Remove a skip day for this channel.
removeSkipHour(String) - Method in class org.apache.commons.digester.rss.Channel
Remove a skip hour for this channel.
render(OutputStream) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with no indication of character encoding.
render(OutputStream, String) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified output stream, with the specified character encoding.
render(PrintWriter) - Method in class org.apache.commons.digester.rss.Image
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer.
render(PrintWriter) - Method in class org.apache.commons.digester.rss.TextInput
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer.
render(PrintWriter) - Method in class org.apache.commons.digester.rss.Item
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer.
render(PrintWriter) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
render(PrintWriter, String) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
render(Writer) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, with no indication of character encoding.
render(Writer, String) - Method in class org.apache.commons.digester.rss.Channel
Render this channel as XML conforming to the RSS 0.91 specification, to the specified writer, indicating the specified character encoding.
resolveEntity(String, String) - Method in class org.apache.commons.digester.Digester
Resolve the requested external entity.
root - Variable in class org.apache.commons.digester.Digester
The "root" element of the stack (in other words, the last object that was popped.
RSSDigester - class org.apache.commons.digester.rss.RSSDigester.
Implementation of org.apache.commons.digester.Digester designed to process input streams that conform to the Rich Site Summary DTD, version 0.91.
RSSDigester() - Constructor for class org.apache.commons.digester.rss.RSSDigester
 
Rule - class org.apache.commons.digester.Rule.
Concrete implementations of this class implement actions to be taken when a corresponding nested pattern of XML elements has been matched.
Rule(Digester) - Constructor for class org.apache.commons.digester.Rule
Default constructor sets only the the associated Digester.
rules - Variable in class org.apache.commons.digester.RulesBase
The set of registered Rule instances, in the order that they were originally registered.
rules - Variable in class org.apache.commons.digester.Digester
The Rules implementation containing our collection of Rule instances and associated matching policy.
Rules - interface org.apache.commons.digester.Rules.
Public interface defining a collection of Rule instances (and corresponding matching patterns) plus an implementation of a matching policy that selects the rules that match a particular pattern of nested elements discovered during parsing.
rules() - Method in class org.apache.commons.digester.RulesBase
Return a List of all registered Rule instances, or a zero-length List if there are no registered Rule instances.
rules() - Method in interface org.apache.commons.digester.Rules
Return a List of all registered Rule instances, or a zero-length List if there are no registered Rule instances.
RulesBase - class org.apache.commons.digester.RulesBase.
Default implementation of the Rules interface that supports the standard rule matching behavior.
RulesBase() - Constructor for class org.apache.commons.digester.RulesBase
 
RuleSet - interface org.apache.commons.digester.RuleSet.
Public interface defining a shorthand means of configuring a complete set of related Rule definitions, possibly associated with a particular namespace URI, in one operation.
RuleSetBase - class org.apache.commons.digester.RuleSetBase.
Convenience base class that implements the RuleSet interface.
RuleSetBase() - Constructor for class org.apache.commons.digester.RuleSetBase
 

S

setChannelClass(String) - Method in class org.apache.commons.digester.rss.RSSDigester
 
setClassLoader(ClassLoader) - Method in class org.apache.commons.digester.Digester
Set the class loader to be used for instantiating application objects when required.
setCopyright(String) - Method in class org.apache.commons.digester.rss.Channel
 
setDebug(int) - Method in class org.apache.commons.digester.Digester
Set the debugging detail level of this Digester.
setDescription(String) - Method in class org.apache.commons.digester.rss.Image
 
setDescription(String) - Method in class org.apache.commons.digester.rss.TextInput
 
setDescription(String) - Method in class org.apache.commons.digester.rss.Item
 
setDescription(String) - Method in class org.apache.commons.digester.rss.Channel
 
setDigester(Digester) - Method in class org.apache.commons.digester.RulesBase
Set the Digester instance with which this Rules instance is associated.
setDigester(Digester) - Method in interface org.apache.commons.digester.ObjectCreationFactory
Set the Digester to allow the implementation to do logging, classloading based on the digester's classloader, etc.
setDigester(Digester) - Method in class org.apache.commons.digester.AbstractObjectCreationFactory
Set the Digester to allow the implementation to do logging, classloading based on the digester's classloader, etc.
setDigester(Digester) - Method in interface org.apache.commons.digester.Rules
Set the Digester instance with which this Rules instance is associated.
setDocs(String) - Method in class org.apache.commons.digester.rss.Channel
 
setDocumentLocator(Locator) - Method in class org.apache.commons.digester.Digester
Set the document locator associated with our parser.
setErrorHandler(ErrorHandler) - Method in class org.apache.commons.digester.Digester
Set the error handler for this Digester.
setHeight(int) - Method in class org.apache.commons.digester.rss.Image
 
setImage(Image) - Method in class org.apache.commons.digester.rss.Channel
 
setImageClass(String) - Method in class org.apache.commons.digester.rss.RSSDigester
 
setItemClass(String) - Method in class org.apache.commons.digester.rss.RSSDigester
 
setLanguage(String) - Method in class org.apache.commons.digester.rss.Channel
 
setLastBuildDate(String) - Method in class org.apache.commons.digester.rss.Channel
 
setLink(String) - Method in class org.apache.commons.digester.rss.Image
 
setLink(String) - Method in class org.apache.commons.digester.rss.TextInput
 
setLink(String) - Method in class org.apache.commons.digester.rss.Item
 
setLink(String) - Method in class org.apache.commons.digester.rss.Channel
 
setManagingEditor(String) - Method in class org.apache.commons.digester.rss.Channel
 
setName(String) - Method in class org.apache.commons.digester.rss.TextInput
 
setNamespaceAware(boolean) - Method in class org.apache.commons.digester.Digester
Set the "namespace aware" flag for parsers we create.
setNamespaceURI(String) - Method in class org.apache.commons.digester.RulesBase
Set the namespace URI that will be applied to all subsequently added Rule objects.
setNamespaceURI(String) - Method in class org.apache.commons.digester.Rule
Set the namespace URI for which this Rule is relevant, if any.
setNamespaceURI(String) - Method in interface org.apache.commons.digester.Rules
Set the namespace URI that will be applied to all subsequently added Rule objects.
SetNextRule - class org.apache.commons.digester.SetNextRule.
Rule implementation that calls a method on the (top-1) (parent) object, passing the top object (child) as an argument.
SetNextRule(Digester, String) - Constructor for class org.apache.commons.digester.SetNextRule
Construct a "set next" rule with the specified method name.
SetNextRule(Digester, String, String) - Constructor for class org.apache.commons.digester.SetNextRule
Construct a "set next" rule with the specified method name.
SetPropertiesRule - class org.apache.commons.digester.SetPropertiesRule.
Rule implementation that sets properties on the object at the top of the stack, based on attributes with corresponding names.
SetPropertiesRule(Digester) - Constructor for class org.apache.commons.digester.SetPropertiesRule
Default constructor sets only the the associated Digester.
SetPropertyRule - class org.apache.commons.digester.SetPropertyRule.
Rule implementation that sets an individual property on the object at the top of the stack, based on attributes with specified names.
SetPropertyRule(Digester, String, String) - Constructor for class org.apache.commons.digester.SetPropertyRule
Construct a "set property" rule with the specified name and value attributes.
setPubDate(String) - Method in class org.apache.commons.digester.rss.Channel
 
setRating(String) - Method in class org.apache.commons.digester.rss.Channel
 
setRuleNamespaceURI(String) - Method in class org.apache.commons.digester.Digester
Set the namespace URI that will be applied to all subsequently added Rule objects.
setRules(Rules) - Method in class org.apache.commons.digester.Digester
Set the Rules implementation object containing our rules collection and associated matching policy.
setTextInput(TextInput) - Method in class org.apache.commons.digester.rss.Channel
 
setTextInputClass(String) - Method in class org.apache.commons.digester.rss.RSSDigester
 
setTitle(String) - Method in class org.apache.commons.digester.rss.Image
 
setTitle(String) - Method in class org.apache.commons.digester.rss.TextInput
 
setTitle(String) - Method in class org.apache.commons.digester.rss.Item
 
setTitle(String) - Method in class org.apache.commons.digester.rss.Channel
 
SetTopRule - class org.apache.commons.digester.SetTopRule.
Rule implementation that calls a method on the top (parent) object, passing the (top-1) (child) object as an argument.
SetTopRule(Digester, String) - Constructor for class org.apache.commons.digester.SetTopRule
Construct a "set parent" rule with the specified method name.
SetTopRule(Digester, String, String) - Constructor for class org.apache.commons.digester.SetTopRule
Construct a "set parent" rule with the specified method name.
setURL(String) - Method in class org.apache.commons.digester.rss.Image
 
setUseContextClassLoader(boolean) - Method in class org.apache.commons.digester.Digester
Determine whether to use the Context ClassLoader (the one found by calling Thread.currentThread().getContextClassLoader()) to resolve/load classes that are defined in various rules.
setValidating(boolean) - Method in class org.apache.commons.digester.Digester
Set the validating parser flag.
setVersion(double) - Method in class org.apache.commons.digester.rss.Channel
 
setWebMaster(String) - Method in class org.apache.commons.digester.rss.Channel
 
setWidth(int) - Method in class org.apache.commons.digester.rss.Image
 
setWriter(PrintWriter) - Method in class org.apache.commons.digester.Digester
Set the logging writer for this Digester.
skipDays - Variable in class org.apache.commons.digester.rss.Channel
The set of skip days for this channel.
skipHours - Variable in class org.apache.commons.digester.rss.Channel
The set of skip hours for this channel.
skippedEntity(String) - Method in class org.apache.commons.digester.Digester
Process notification of a skipped entity.
stack - Variable in class org.apache.commons.digester.Digester
The object stack being constructed.
startDocument() - Method in class org.apache.commons.digester.Digester
Process notification of the beginning of the document being reached.
startElement(String, String, String, Attributes) - Method in class org.apache.commons.digester.Digester
Process notification of the start of an XML element being reached.
startPrefixMapping(String, String) - Method in class org.apache.commons.digester.Digester
Process notification that a namespace prefix is coming in to scope.

T

textInput - Variable in class org.apache.commons.digester.rss.Channel
The text input description for this channel.
TextInput - class org.apache.commons.digester.rss.TextInput.
Implementation object representing a textinput in the Rich Site Summary DTD, version 0.91.
TextInput() - Constructor for class org.apache.commons.digester.rss.TextInput
 
textInputClass - Variable in class org.apache.commons.digester.rss.RSSDigester
The fully qualified class name of the TextInput implementation class.
title - Variable in class org.apache.commons.digester.rss.Image
The image alternate text (1-100 characters).
title - Variable in class org.apache.commons.digester.rss.TextInput
The text input submit button label (1-100 characters).
title - Variable in class org.apache.commons.digester.rss.Item
The item title (1-100 characters).
title - Variable in class org.apache.commons.digester.rss.Channel
The channel title (1-100 characters).
toString() - Method in class org.apache.commons.digester.FactoryCreateRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.SetTopRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.SetPropertyRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.SetPropertiesRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.ObjectCreateRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.CallParamRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.SetNextRule
Render a printable version of this Rule.
toString() - Method in class org.apache.commons.digester.CallMethodRule
Render a printable version of this Rule.

U

unparsedEntityDecl(String, String, String, String) - Method in class org.apache.commons.digester.Digester
Receive notification of an unparsed entity declaration event.
url - Variable in class org.apache.commons.digester.rss.Image
The image location URL (1-500 characters).
useContextClassLoader - Variable in class org.apache.commons.digester.Digester
Do we want to use the Context ClassLoader when loading classes for instantiating new objects? Default is false.

V

validating - Variable in class org.apache.commons.digester.Digester
Do we want to use a validating parser?
value - Variable in class org.apache.commons.digester.SetPropertyRule
The attribute that will contain the property value.
version - Variable in class org.apache.commons.digester.rss.Channel
The RSS specification version number used to create this Channel.

W

warning(SAXParseException) - Method in class org.apache.commons.digester.Digester
Forward notification of a parse warning to the application supplied error handler (if any).
webMaster - Variable in class org.apache.commons.digester.rss.Channel
The webmaster email address (1-100 characters).
width - Variable in class org.apache.commons.digester.rss.Image
The image width in pixels (1-400).
writer - Variable in class org.apache.commons.digester.Digester
The PrintWriter to which we should send log output, or null to write to System.out.

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

Copyright (c) 2001 - Apache Software Foundation