package org.rancode.framework.util; /** * * 说明:自定义TabelModel工具类 * * @author LS * * */ import java.util.Vector; import javax.swing.table.AbstractTableModel; public class BaseTableModule extends AbstractTableModel { Vector<Vector> rows;// 定义行 Vector<String> colums;// 定义列 public BaseTableModule(String[] params, Vector<Vector> vector) { // 初始化列 this.colums = new Vector<String>(); for (String colum : params) { colums.add(colum); } // 初始化行 this.rows = vector; } @Override public String getColumnName(int column) { return this.colums.get(column); } @Override public int getColumnCount() { return this.colums.size(); } @Override public int getRowCount() { return this.rows.size(); } @Override public Object getValueAt(int rowIndex, int columnIndex) { return ((Vector) rows.get(rowIndex)).get(columnIndex); } }
最近下载更多
Zyy19820821 LV2
9月24日
ma406805131 LV15
6月25日
1542457015 LV3
2023年11月15日
zcfhh1 LV2
2023年10月3日
微信网友_6608533750566912 LV2
2023年8月16日
Assoc洛晓 LV2
2023年7月24日
2385649653 LV7
2023年6月17日
buhuia LV4
2023年6月9日
y1214435276 LV9
2023年3月22日
漫步的海星 LV4
2023年3月14日
最近浏览更多
lz88888 LV12
10月17日
Zyy19820821 LV2
9月16日
luoyanglin LV2
9月14日
微信网友_7030143019094016 LV1
9月11日
liulian666 LV2
7月19日
大明代码时代 LV7
7月1日
heshao LV2
6月4日
2860615178 LV4
5月29日
hellolu21 LV10
5月16日
strugglerLU LV1
5月13日