Searched defs:stopCellEditing (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DCellEditor.java112 public boolean stopCellEditing(); method in interface:CellEditor
H A DAbstractCellEditor.java84 public boolean stopCellEditing() { method in class:AbstractCellEditor
H A DDefaultCellEditor.java152 public boolean stopCellEditing() {
158 return super.stopCellEditing();
230 * @see EditorDelegate#stopCellEditing
232 public boolean stopCellEditing() { method in class:DefaultCellEditor
233 return delegate.stopCellEditing();
367 public boolean stopCellEditing() { method in class:DefaultCellEditor.EditorDelegate
382 * @see #stopCellEditing
385 DefaultCellEditor.this.stopCellEditing();
391 * @see #stopCellEditing
394 DefaultCellEditor.this.stopCellEditing();
[all...]
H A DJTable.java3490 if (cellEditor != null && !cellEditor.stopCellEditing()) {
4573 if (isEditing() && !getCellEditor().stopCellEditing()) {
4591 if (isEditing() && !getCellEditor().stopCellEditing()) {
5455 public boolean stopCellEditing() { method in class:JTable.GenericEditor
5467 return super.stopCellEditing();
5477 return super.stopCellEditing();
5965 if (!getCellEditor().stopCellEditing()) {
6223 if (!getCellEditor().stopCellEditing()) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTextFieldEditor.java112 public boolean stopCellEditing() { method in class:XTextFieldEditor
H A DXMBeanAttributes.java202 public void stopCellEditing() { method in class:XMBeanAttributes
208 tableCellEditor.stopCellEditing();
617 // calling 'stopCellEditing'.
624 // in this case we must not call stopCellEditing, because it's already
626 // lostFocus/mousePressed -> stopCellEditing -> setValueAt -> tableChanged
633 private void refreshAttributes(final boolean stopCellEditing) { argument
648 if (stopCellEditing) stopCellEditing();
664 if (isEditing()) stopCellEditing();
673 if (isEditing()) stopCellEditing();
851 public boolean stopCellEditing() { method in class:XMBeanAttributes.ValueCellEditor
[all...]
H A DXMBeanNotifications.java109 public void stopCellEditing() { method in class:XMBeanNotifications
112 tce.stopCellEditing();
582 public boolean stopCellEditing() { method in class:XMBeanNotifications.UserDataCellEditor
595 return super.stopCellEditing();
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellEditor.java304 public boolean stopCellEditing() { method in class:DefaultTreeCellEditor
305 if(realEditor.stopCellEditing()) {

Completed in 72 milliseconds