Package at.bestsolution.efxclipse.tooling.css.cssDsl

Examples of at.bestsolution.efxclipse.tooling.css.cssDsl.ColorTok


  }
 
  protected String getHoverInfoAsHtml(EObject o) {
    // QnD hack to get tooltips back
    if( o instanceof ColorTok ) {
      ColorTok t = (ColorTok) o;
      String rv = "<table><tr><td><div style='height: 20px; width: 20px;border:1;border-style:solid;background-color: "+t.getValue()+"'></div></td><td>"+t.getValue()+"</td></tr></table>";
      return rv;
    } else if( o instanceof FuncTok ) {
      FuncTok f = (FuncTok) o;
      return getColorHoverForFunction(f);
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.css.cssDsl.ColorTok

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.