1 19 20 package org.netbeans.api.editor.settings; 21 22 27 public final class EditorStyleConstants { 28 29 private String representation; 30 31 EditorStyleConstants(String representation) { 32 this.representation = representation; 33 } 34 35 38 public static final Object WaveUnderlineColor = new EditorStyleConstants ("wave underline color"); 40 43 public static final Object DisplayName = new EditorStyleConstants ("display name"); 45 48 public static final Object Default = new EditorStyleConstants ("default"); 50 public String toString() { 51 return representation; 52 } 53 54 } 55 | Popular Tags |