where
このメソッドは、パラメータ値で指定された位置に画像を挿入することになっています。
where
パラメータの使い方がわかりません。
これは私がこれまでに持っているものです:
public boolean addPicture( Picture thePicture, int where )
{
int index = where;
while( index < pictArray.length )
{
pictArray[pictArray.length - 1] = thePicture;
}
return true;
}