home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing;
-
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import java.awt.event.ItemEvent;
- import java.awt.event.ItemListener;
- import java.io.Serializable;
- import java.util.EventObject;
-
- class DefaultCellEditor$EditorDelegate implements ActionListener, ItemListener, Serializable {
- // $FF: synthetic field
- DefaultCellEditor this$0;
- protected Object value;
-
- public Object getCellEditorValue() {
- return this.value;
- }
-
- public void setValue(Object x) {
- this.value = x;
- }
-
- public boolean isCellEditable(EventObject anEvent) {
- return true;
- }
-
- public boolean startCellEditing(EventObject anEvent) {
- return true;
- }
-
- public boolean stopCellEditing() {
- return true;
- }
-
- public void cancelCellEditing() {
- }
-
- public void actionPerformed(ActionEvent e) {
- this.this$0.fireEditingStopped();
- }
-
- public void itemStateChanged(ItemEvent e) {
- this.this$0.fireEditingStopped();
- }
-
- // $FF: synthetic method
- DefaultCellEditor$EditorDelegate(DefaultCellEditor this$0) {
- this.this$0 = this$0;
- }
- }
-