*
* @param href - String reference to stylesheet
* @param type - String type of stylesheet
*/
public XMLDocument addStylesheet(String href, String type) {
PI pi = new PI();
pi.setTarget("xml-stylesheet")
.addInstruction("href", href)
.addInstruction("type", type);
prolog.addElement(pi);
return(this);