Class DocumentModel

java.lang.Object
  |
  +--DocumentModel

public class DocumentModel
extends java.lang.Object

The document model. This class holds a parsed document: the top FlexibleBox representing the page, and the title of the page.


Field Summary
 FlexibleBox box
          The FlexibleBox representing the page.
 java.lang.String title
          The title of the page.
 
Constructor Summary
DocumentModel(FlexibleBox b, java.lang.String t)
          Constructs a new DocumentModel.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

box

public FlexibleBox box
The FlexibleBox representing the page.

title

public java.lang.String title
The title of the page.
Constructor Detail

DocumentModel

public DocumentModel(FlexibleBox b,
                     java.lang.String t)
Constructs a new DocumentModel.
Parameters:
b - the FlexibleBox representing the page.
t - the title of the page.