1 19 package org.openide.explorer.propertysheet; 20 21 import org.openide.options.SystemOption; 22 import org.openide.util.HelpCtx; 23 import org.openide.util.NbBundle; 24 25 import java.awt.Color ; 26 27 import javax.swing.UIManager ; 28 29 30 40 public class PropertySheetSettings extends SystemOption { 41 42 static final long serialVersionUID = -3820718202747868830L; 43 44 45 static int propertyPaintingStyle = -1; 46 static boolean plastic = false; 47 48 49 static boolean displayWritableOnly = false; 50 static int sortingMode = -1; 51 static Color valueColor = null; 52 private static Color disabledColor; 53 static PropertySheetSettings propertySheetSettings = null; 54 55 static PropertySheetSettings getDefault() { 56 return propertySheetSettings; 57 } 58 59 public String displayName() { 60 return null; 61 } 62 63 public HelpCtx getHelpCtx() { 64 return null; 65 } 66 67 72 public void setPropertyPaintingStyle(int style) { 73 } 74 75 83 public int getPropertyPaintingStyle() { 84 return -1; 85 } 86 87 92 public void setSortingMode(int sortingMode) { 93 } 94 95 100 public int getSortingMode() { 101 return -1; 102 } 103 104 109 public void setPlastic(boolean plastic) { 110 } 111 112 117 public boolean getPlastic() { 118 return false; 119 } 120 121 126 public void setValueColor(Color color) { 127 } 128 129 132 public Color getValueColor() { 133 return null; 134 } 135 136 141 public void setDisabledPropertyColor(Color color) { 142 } 143 144 149 public Color getDisabledPropertyColor() { 150 return null; 151 } 152 153 157 public void setDisplayWritableOnly(boolean b) { 158 } 159 160 165 public boolean getDisplayWritableOnly() { 166 return false; 167 } 168 } 169 | Popular Tags |