您的位置:首页 > 移动开发 > Objective-C

自己在swing开发中的一点心得

2006-07-05 23:23 417 查看
就当自己的在平时开发中记录用的吧。

1. 写一个自己的TableCellEditor , 可以继承与AbstractCellEditor ,主要是应该实现 2个方法:

       a. getTableCellEditorComponent   这个方法主要是当这个CELL被编辑的时候返回的Component ,也就是可以认为,当被编辑的时候会去调用这个方法。所以当我们实现自己的CellEditor的时候,当你想定制自己的Component ,就该这样写。

  b. getCellEditorValue  这个方法因该是,当编译状态结束的时候应该返回的对象,可以参考下jtable的源代码里,发现当editingStopped的时候会调用该方法,设到jtable Model中的value中去的。

   下面给各例子,其他的方法都是我从DefaultCellEditor中copy过来的:

 private class MyCellEditor_useFor_ComboBox extends AbstractCellEditor implements TableCellEditor {
        private JComboBox comboBox = null;
        MyCellEditor_useFor_ComboBox(final JComboBox comboBox) {
            this.comboBox = comboBox;
        }

        public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row,
            int column) {
            BSysDictionary b = (BSysDictionary)value;
            if(b!=null){
                for(int i =0; i < comboBox.getItemCount();i++){
                    if(comboBox.getItemAt(i) !=null && b.getValue() == ((BSysDictionary)comboBox.getItemAt(i)).getValue()){
                        comboBox.setSelectedIndex(i);
                        break;
                    }
                }
            }
            return comboBox;
        }

        public Object getCellEditorValue() {
           return comboBox.getSelectedItem();
        }

        public boolean shouldSelectCell(EventObject anEvent) {
            if (anEvent instanceof MouseEvent) {
                MouseEvent e = (MouseEvent) anEvent;
                return e.getID() != MouseEvent.MOUSE_DRAGGED;
            }
            return true;
        }

        public boolean stopCellEditing() {
            if (comboBox.isEditable()) {
// Commit edited value.
                comboBox.actionPerformed(new ActionEvent(
                    this, 0, ""));
            }
            return super.stopCellEditing();
        }

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  swing object null table class