コード例 #1
0
ファイル: SubCharSeq.java プロジェクト: maoueh/kawa-fork
 public void setCharacterAt(int index, int ch) {
   if (index < 0 || index >= size()) throw new IndexOutOfBoundsException();
   ((CharSeq) base).setCharacterAt(start + index, ch);
 }