* @return DOCUMENT ME!
*/
public final StyleSheetList getStyleSheets() {
if ((this.isHTMLDocument) || (this.stylesheetPI != null)) {
if ((this.cssList == null) && (this.isHTMLDocument)) {
this.cssList = new CStyleSheetList();
if (this.defaultStyleSheet != null) {
this.cssList.add(this.defaultStyleSheet);
}
this.getHTMLCSS(this.cssList);
} // end if
else if (this.cssList == null) {
this.cssList = new CStyleSheetList();
if (this.defaultStyleSheet != null) {
this.cssList.add(this.defaultStyleSheet);
}
this.getPICSS(this.cssList);
} // end else if
} // end if
else if (this.cssList == null) {
this.cssList = new CStyleSheetList();
} // end else if
return this.cssList;
} // end getStyleSheets()