Package org.apache.stanbol.commons.web.base

Examples of org.apache.stanbol.commons.web.base.ScriptResource


  }

  @Override
  public List<ScriptResource> getScriptResources() {
    List<ScriptResource> resources = new ArrayList<ScriptResource>();
    resources.add(new ScriptResource("text/javascript",
        "scripts/prettify/prettify.js", this, 0));
    resources.add(new ScriptResource("text/javascript", "scripts/jit.js",
        this, 1));
    resources.add(new ScriptResource("text/javascript",
        "scripts/jquery-1.5.1.min.js", this, 2));
    resources.add(new ScriptResource("text/javascript",
        "scripts/jquery-ui-1.8.11.custom.min.js", this, 3));
    return resources;
  }
View Full Code Here


    }

    @Override
    public List<ScriptResource> getScriptResources() {
        List<ScriptResource> resources = new ArrayList<ScriptResource>();
        resources.add(new ScriptResource("text/javascript", "scripts/actions.js", this, 10));
        return resources;
    }
View Full Code Here

    }
   
    @Override
    public List<ScriptResource> getScriptResources() {
        List<ScriptResource> scripts = new ArrayList<ScriptResource>();
        scripts.add(new ScriptResource("text/javascript", "scripts/json2.js", this, 10));
        return scripts;
    }
View Full Code Here

    }

    @Override
    public List<ScriptResource> getScriptResources() {
        List<ScriptResource> resources = new ArrayList<ScriptResource>();
        resources.add(new ScriptResource("text/javascript", "scripts/jquery-1.4.2.js", this, 0));
        return resources;
    }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.commons.web.base.ScriptResource

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.