Package at.bestsolution.efxclipse.jface.resources

Examples of at.bestsolution.efxclipse.jface.resources.ColorRegistry


      fForegroundColorName = foregroundColorName;
      fBackgroundColorName = backgroundColorName;
    }

    public void applyStyles(TextStyle textStyle) {
      ColorRegistry colorRegistry = JFaceResources.getColorRegistry();
      if (fForegroundColorName != null) {
        textStyle.foreground = colorRegistry.get(fForegroundColorName);
      }
      if (fBackgroundColorName != null) {
        textStyle.background = colorRegistry.get(fBackgroundColorName);
      }
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.jface.resources.ColorRegistry

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.