Package com.github.dandelion.core.html

Examples of com.github.dandelion.core.html.LinkTag


  public static HtmlTag transformAsset(Asset asset) {
    HtmlTag tag;
    switch (asset.getType()) {
    case css:
      tag = new LinkTag(asset.getFinalLocation());
      break;
    case js:
      tag = new ScriptTag(asset.getFinalLocation());
      break;
    default:
View Full Code Here

TOP

Related Classes of com.github.dandelion.core.html.LinkTag

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.