Package org.rascalmpl.library.vis.util

Examples of org.rascalmpl.library.vis.util.MaxFontAscent


  void registerMore(IFigureConstructionEnv env, NameResolver resolver) {
    String fb = prop.getStr(FONT_BASELINE);
    if(!fb.equals("")) {
      mf = resolver.resolveMaxFontAscent(fb);
      if(mf == null){
        mf = new MaxFontAscent();
        resolver.register(fb,mf);
      }
      mf.updateToClock(env.getCallBackEnv().getComputeClock());
      mf.set(getTextAscent(),getTextDescent());
    }
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.util.MaxFontAscent

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.