- 400 名前:334 [2010/03/30(火) 19:48:53 ]
- >>393
newなんてするかい・・そこだけはりつけちゃる public Component getTableCellRendererComponent(JTable table, Object data, boolean isSelected, boolean hasFocus, int row, int column) { MapTable mapTable = (MapTable) table; if (!(mapTable.enableStartColumn <= column && column < mapTable.enableStartColumn + mapTable.enableLength)) { this.setIcon(null); } else { if (data != null) { int item = (Integer) data; if (item != -1) { PalletTableItem pi = palletTable.getValueAt(item); if (pi != null) { this.setIcon(pi.icon); } else { this.setIcon(null); } } else { this.setIcon(null); } } else { this.setIcon(null); } } if (isSelected) { this.setBorder(lineBorder); } else { this.setBorder(emptyBorder); } return this; }
|

|