Package org.jboss.ide.eclipse.freemarker.preferences

Examples of org.jboss.ide.eclipse.freemarker.preferences.Preferences


    return sb.toString();
  }

  public static String propose(StyleRange[] actual, IDocument document) {
    Map<Color, PreferenceKey> reverse = new HashMap<Color, PreferenceKey>();
    Preferences prefs = Preferences.getInstance();
    for (PreferenceKey k : PreferenceKey.values()) {
      if (k.name().startsWith("COLOR_")) { //$NON-NLS-1$
        Color c = prefs.getColor(k);
        reverse.put(c, k);
      }
    }

    StringBuilder out = new StringBuilder();
View Full Code Here

TOP

Related Classes of org.jboss.ide.eclipse.freemarker.preferences.Preferences

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.