Package org.apache.ecs.xml

Examples of org.apache.ecs.xml.PI


     *
     * @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);
View Full Code Here


     *
     * @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);
View Full Code Here

TOP

Related Classes of org.apache.ecs.xml.PI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.