?? tablemodle.java~1~
字號(hào):
package supermarket;
import javax.swing.table.*;
public class TableModle
extends AbstractTableModel {
public TableModle() {
}
/**
* Returns the number of columns in the model.
*
* @return the number of columns in the model
* @todo Implement this javax.swing.table.TableModel method
*/
public int getColumnCount() {
return 0;
}
/**
* Returns the number of rows in the model.
*
* @return the number of rows in the model
* @todo Implement this javax.swing.table.TableModel method
*/
public int getRowCount() {
return 0;
}
/**
* Returns the value for the cell at <code>columnIndex</code> and
* <code>rowIndex</code>.
*
* @param rowIndex the row whose value is to be queried
* @param columnIndex the column whose value is to be queried
* @return the value Object at the specified cell
* @todo Implement this javax.swing.table.TableModel method
*/
public Object getValueAt(int rowIndex, int columnIndex) {
return null;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -