Browse Source

change

master
daniel 8 years ago
parent
commit
6f5a6915b2
  1. 23
      designer/src/com/fr/quickeditor/cellquick/CellDSColumnEditor.java

23
designer/src/com/fr/quickeditor/cellquick/CellDScolumnEditor.java → designer/src/com/fr/quickeditor/cellquick/CellDSColumnEditor.java

@ -16,7 +16,7 @@ import java.awt.*;
import java.awt.event.ItemEvent; import java.awt.event.ItemEvent;
import java.awt.event.ItemListener; import java.awt.event.ItemListener;
public class CellDScolumnEditor extends CellQuickEditor { public class CellDSColumnEditor extends CellQuickEditor {
private JPanel dsColumnRegion; private JPanel dsColumnRegion;
private JPanel centerPane; private JPanel centerPane;
private SelectedDataColumnPane dataPane; private SelectedDataColumnPane dataPane;
@ -55,16 +55,7 @@ public class CellDScolumnEditor extends CellQuickEditor {
} }
}; };
private static CellDScolumnEditor THIS; private CellDSColumnEditor() {
public static final CellDScolumnEditor getInstance() {
if (THIS == null) {
THIS = new CellDScolumnEditor();
}
return THIS;
}
private CellDScolumnEditor() {
super(); super();
} }
@ -107,4 +98,14 @@ public class CellDScolumnEditor extends CellQuickEditor {
this.validate(); this.validate();
} }
/**
* for 关闭时候释放
*/
public void release () {
super.release();
dsColumnRegion = null;
centerPane = null;
}
} }
Loading…
Cancel
Save