コード例 #1
0
ファイル: Loop.java プロジェクト: losalamos/coNCePTuaL
  // set the sequence indexed by index
  public void setSequence(int index, String sequence) {
    while (index >= sequences.size()) sequences.add("");

    sequences.setElementAt(sequence, index);
  }
コード例 #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);
   }
 }