Package org.exoplatform.web.application.javascript.Javascript

Examples of org.exoplatform.web.application.javascript.Javascript.ExtendedJScript


    *            Content of JavaScript that will be added into available JavaScript
    */
   @Deprecated
   public synchronized void addExtendedJavascript(String module, String scriptPath, ServletContext scontext, String scriptData)
   {
      ExtendedJScript js = new ExtendedJScript(module, scriptPath, scontext.getContextPath(), scriptData);
      commonJScripts.add(js);
      if (log.isDebugEnabled())
      {
         log.debug("Added an extended javascript " + js);
      }
View Full Code Here

TOP

Related Classes of org.exoplatform.web.application.javascript.Javascript.ExtendedJScript

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.