Release Planner v1.0

rp.dom.xml
Class ContributorLoader

java.lang.Object
  |
  +--org.xml.sax.helpers.DefaultHandler
        |
        +--rp.util.xml.XMLLoader
              |
              +--rp.dom.xml.RPLoader
                    |
                    +--rp.dom.xml.UserLoader
                          |
                          +--rp.dom.xml.ContributorLoader
All Implemented Interfaces:
org.xml.sax.ContentHandler, org.xml.sax.DTDHandler, org.xml.sax.EntityResolver, org.xml.sax.ErrorHandler, XMLLoaderChainElement
Direct Known Subclasses:
CoderLoader

public class ContributorLoader
extends UserLoader

Loads any object deriving from contributor.

Version:
$Revision: 1.1 $, $Date: 2001/06/25 19:39:03 $

Constructor Summary
ContributorLoader()
           
 
Method Summary
protected  java.lang.Object alloc()
           
protected  void endElement(int tag)
          Called when the end-tag of an element is encoutnered.
protected  Contributor getContributor()
           
protected  void startElement(int tag)
          Called whenever a new XML element is encountered Attributes may be accessed via a call to getAttributes.
 
Methods inherited from class rp.dom.xml.UserLoader
done, getUser
 
Methods inherited from class rp.dom.xml.RPLoader
getObject, init, start
 
Methods inherited from class rp.util.xml.XMLLoader
characters, doneLoader, endElement, getAttributes, getCharData, getLoaderParameter, getNestingLevel, getParameter, newLoader, startElement
 
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ContributorLoader

public ContributorLoader()
Method Detail

alloc

protected java.lang.Object alloc()
Overrides:
alloc in class UserLoader

getContributor

protected Contributor getContributor()

startElement

protected void startElement(int tag)
Description copied from class: XMLLoader
Called whenever a new XML element is encountered Attributes may be accessed via a call to getAttributes. Character data may be accessed via a call to getCharData. The loader return parameter may be accessed via a call to getLoaderParameter.

Overrides:
startElement in class XMLLoader

endElement

protected void endElement(int tag)
Description copied from class: XMLLoader
Called when the end-tag of an element is encoutnered. Attributes may be accessed via a call to getAttributes. Character data may be accessed via a call to getCharData.

Overrides:
endElement in class UserLoader

Release Planner v1.0