Package org.apache.ecs.xhtml

Examples of org.apache.ecs.xhtml.script


          link l = new link(extension.getStyleURL(), "stylesheet", "text/css");
          doc.appendHead(l);         
        }
        if (extension.getScriptURL() != null)
        {
          script jslink = new script();
          jslink.setLanguage("javascript");
          jslink.setSrc(extension.getScriptURL());
          doc.appendHead(jslink);
        }
        doc.output(w);
      }
      w.flush();
View Full Code Here

TOP

Related Classes of org.apache.ecs.xhtml.script

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.