コード例 #1
0
ファイル: JCTimePanel.java プロジェクト: esprayer/EMPPlatform
 public Object getValueAt(int rowIndex, int columnIndex) {
   if (timeList != null) {
     if (rowIndex < timeList.size()) {
       JCTimeObject ctObj = (JCTimeObject) timeList.get(rowIndex);
       if (columnIndex == 0) {
         return ctObj.toString();
       }
     }
   }
   return null;
 }
コード例 #2
0
ファイル: JCTimePanel.java プロジェクト: esprayer/EMPPlatform
 public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
   if (timeList != null) {
     if (rowIndex < timeList.size()) timeList.setElementAt(aValue, rowIndex);
     else timeList.add(aValue);
   }
 }
コード例 #3
0
ファイル: JCTimePanel.java プロジェクト: esprayer/EMPPlatform
 public int getRowCount() {
   if (timeList != null) return timeList.size();
   return 0;
 }