Obtained from:
Submitted by:
Reviewed by:
Returned getTitle() to AreaTreeModel.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197953
13f79535-47bb-0310-9956-
ffa450edef68
* @return the PageViewport for the particular page
*/
public abstract PageViewport getPage(int seq, int count);
+
+ /**
+ * Get the title for a page sequence.
+ * @param count the page sequence count
+ * @return the title of the page sequence
+ */
+ public abstract Title getTitle(int count);
}
return extensions;
}
+ /**
+ * Get the title for a page sequence.
+ * @param count the page sequence count
+ * @return the title of the page sequence
+ */
+ public Title getTitle(int count) {
+ return (Title) titles.get(count);
+ }
+
/**
* End document, do nothing.
*/