|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.microstar.xml.HandlerBase
diva.gui.MultipageParser
public class MultipageParser
Parse all pages of a multi-page document from a file. The document parser must be provided with a model parser that is used to parse the app-specific model on a single page.
Red |
Field Summary | |
---|---|
private java.util.HashMap |
_currentAttributes
Keeps the attributes and their values. |
private Page |
_currentPage
A reference to the current page that's being parsed. |
private ModelParser |
_modelParser
Model parser is used to parse the content of a page. |
private MultipageModel |
_multi
The document object that the parser is supposed to parse into. |
private XmlParser |
_parser
The parser driver. |
static java.lang.String |
DTD_1
The DTD for multipage models. |
static java.lang.String |
DTD_URL
The URL where the DTD is stored. |
static java.lang.String |
MULTIPAGE_TAG
The string constant that specifies the start and end of a document. |
static java.lang.String |
PAGE_NUM_TAG
The string constant that specifies the page number of a page. |
static java.lang.String |
PAGE_TAG
The string constant that specifies the start and end of a sheet in a document. |
static java.lang.String |
PAGE_TITLE_TAG
The string constant that specifies the title attribute of a page. |
static java.lang.String |
PUBLIC_ID
The public identity of the sketch dtd file. |
static java.lang.String |
TITLE_TAG
The string constant that specifies the title attribute of a document. |
Constructor Summary | |
---|---|
MultipageParser(ModelParser pageParser)
Create a MultipageParser with the specified model parser which is used to parse the content of a page. |
Method Summary | |
---|---|
void |
attribute(java.lang.String name,
java.lang.String value,
boolean isSpecified)
Handle an attribute value assignment. |
void |
charData(char[] chars,
int offset,
int length)
Handle character data. |
void |
endElement(java.lang.String name)
Handle the end of an element. |
void |
parse(java.io.Reader reader,
MultipageModel multi)
Parse the file (from reader) into the given multipage data structure. |
java.lang.Object |
resolveEntity(java.lang.String publicID,
java.lang.String systemID)
Resolve an external entity. |
void |
startElement(java.lang.String name)
Handle the start of an element. |
Methods inherited from class com.microstar.xml.HandlerBase |
---|
doctypeDecl, endDocument, endExternalEntity, error, ignorableWhitespace, processingInstruction, startDocument, startExternalEntity |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String PUBLIC_ID
public static final java.lang.String DTD_URL
public static final java.lang.String DTD_1
public static final java.lang.String TITLE_TAG
public static final java.lang.String MULTIPAGE_TAG
public static final java.lang.String PAGE_TAG
public static final java.lang.String PAGE_TITLE_TAG
public static final java.lang.String PAGE_NUM_TAG
private ModelParser _modelParser
private XmlParser _parser
private MultipageModel _multi
private Page _currentPage
private java.util.HashMap _currentAttributes
Constructor Detail |
---|
public MultipageParser(ModelParser pageParser)
Method Detail |
---|
public void attribute(java.lang.String name, java.lang.String value, boolean isSpecified) throws java.lang.Exception
attribute
in interface XmlHandler
attribute
in class HandlerBase
name
- The name of the attribute.value
- The value of the attribute, or null if the attribute
is #IMPLIED
.isSpecified
- True if the value was specified, false if it
was defaulted from the DTD.
java.lang.Exception
- The handler may throw any exception.XmlHandler.attribute(java.lang.String, java.lang.String, boolean)
public void charData(char[] chars, int offset, int length) throws java.lang.Exception
charData
in interface XmlHandler
charData
in class HandlerBase
chars
- The character data.offset
- The starting position in the array.length
- The number of characters available.
java.lang.Exception
- The handler may throw any exception.XmlHandler.charData(char[], int, int)
public void endElement(java.lang.String name) throws java.lang.Exception
endElement
in interface XmlHandler
endElement
in class HandlerBase
name
- The element type name.
java.lang.Exception
- The handler may throw any exception.XmlHandler.endElement(java.lang.String)
public void startElement(java.lang.String name) throws java.lang.Exception
startElement
in interface XmlHandler
startElement
in class HandlerBase
name
- The element type name.
java.lang.Exception
- The handler may throw any exception.XmlHandler.startElement(java.lang.String)
public java.lang.Object resolveEntity(java.lang.String publicID, java.lang.String systemID)
resolveEntity
in interface XmlHandler
resolveEntity
in class HandlerBase
publicID
- The public identifier, or null if none was supplied.systemID
- The system identifier.
XmlHandler.resolveEntity(java.lang.String, java.lang.String)
public void parse(java.io.Reader reader, MultipageModel multi) throws java.lang.Exception
java.lang.Exception
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |