Searched defs:editable (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DTextComponentPeer.java42 * Sets if the text component should be editable or not.
44 * @param editable {@code true} for editable text components,
45 * {@code false} for non-editable text components
49 void setEditable(boolean editable); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java41 private boolean editable; field in class:RegisterPanel
130 editable = curThread.canSetContext();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxButton.java92 final boolean editable = comboBox.isEditable();
117 doRendererPaint(g, buttonModel, editable, getInsets(), left, top, width, height);
123 if (!editable) {
135 if (editable) {
158 if (!editable && comboBox != null) {
159 doRendererPaint(g, buttonModel, editable, insets, left, top, width, height);
163 protected void doRendererPaint(final Graphics g, final ButtonModel buttonModel, final boolean editable, final Insets insets, int left, int top, int width, int height) { argument
170 if (!editable && !AquaComboBoxUI.isTableCellEditor(comboBox)) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWTextComponentPeer.java113 public final void setEditable(final boolean editable) { argument
115 getTextComponent().setEditable(editable);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTextComponentPeer.java41 public void setEditable(boolean editable) { argument
42 enableEditing(editable);
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonUI.java179 public static JComboBox createComboBox(Object items[], ActionListener listener, boolean editable) argument
184 comboBox.setEditable(editable);
188 public static JComboBox createComboBox(Object items[], boolean editable) argument
190 return createComboBox(items, null, editable);
193 public static JComboBox createComboBox(Vector items, ActionListener listener, boolean editable) argument
198 comboBox.setEditable(editable);
202 public static JComboBox createComboBox(Vector items, boolean editable) argument
204 return createComboBox(items, null, editable);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFrameView.java50 boolean editable; field in class:FrameView
125 * Also determines if the FrameView should be editable
127 * contains it is editable.
134 editable = t.isEditable();
141 * Also determines if the FrameView should be editable
143 * contains it is editable. And then proceeds to call
154 editable = ((JTextComponent)host).isEditable();
155 htmlPane.setEditable(editable);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DJTreeTable.java63 public void setTreeEditable(boolean editable) { argument
64 treeEditable = editable;
355 * editable. The reason this doesn't work is that you can not use
/openjdk7/jdk/src/share/classes/java/awt/
H A DTextComponent.java46 * that determine whether or not this text is editable. If the
47 * component is editable, it defines another set of methods
74 * <code>TextComponent</code> is editable.
76 * is editable and <code>false</code> if not.
81 boolean editable = true; field in class:TextComponent
107 // the background color of non-editable TextComponents.
267 * Indicates whether or not this text component is editable.
269 * editable; <code>false</code> otherwise.
274 return editable;
279 * text component is editable
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextFieldPeer.java148 public void setEditable(boolean editable) { argument
150 xtext.setEditable(editable);
H A DXTextAreaPeer.java68 boolean editable; field in class:XTextAreaPeer
413 public void setEditable(boolean editable) { argument
414 this.editable = editable;
415 if (jtext != null) jtext.setEditable(editable);
660 // Make sure the cursor is visible in case of non-editable TextArea
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java108 * <b>Note</b>: Non-editable text components also have a caret though
308 * UI installed. The component is marked as editable. No layout manager
1780 * <code>TextComponent</code> is editable or not.
1786 return editable;
1791 * <code>TextComponent</code> should be editable.
1792 * A PropertyChange event ("editable") is fired when the
1802 if (b != editable) {
1803 boolean oldVal = editable;
1804 editable = b;
1805 enableInputMethods(editable);
3846 private boolean editable; field in class:JTextComponent
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java226 * (tree is not editable).
231 * Is the tree editable? Default is false.
233 protected boolean editable; field in class:JTree
470 /** Bound property name for <code>editable</code>. */
471 public final static String EDITABLE_PROPERTY = "editable";
764 * Determines whether the tree is editable. Fires a property
770 * @param flag a boolean value, true if the tree is editable
773 * description: Whether the tree is editable.
776 boolean oldValue = this.editable;
778 this.editable
[all...]

Completed in 76 milliseconds