GridPictureCollection

Inheritance: java.lang.Object

public class GridPictureCollection

Encapsulates a collection of GridPicture objects.

Methods

MethodDescription
add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, InputStream stream)Adds a picture to the collection.
add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName)Adds a picture to the collection.
add(int upperLeftRow, int upperLeftColumn, InputStream stream)Adds a picture to the collection.
add(int upperLeftRow, int upperLeftColumn, String fileName)Adds a picture to the collection.
add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale)Adds a picture to the collection.
clear()
equals(Object arg0)
get(int index)Gets the GridPicture element at the specified index.
getClass()
getCount()
hashCode()
iterator()Gets the rows enumerator
notify()
notifyAll()
removeAt(int param_int)
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, InputStream stream)

public int add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, InputStream stream)

Adds a picture to the collection.

Parameters:

ParameterTypeDescription
upperLeftRowintUpper left row index.
upperLeftColumnintUpper left column index.
lowerRightRowintLower right row index
lowerRightColumnintLower right column index
streamjava.io.InputStreamStream object which contains the image data.

Returns: int - GridPicture object index.

add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName)

public int add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName)

Adds a picture to the collection.

Parameters:

ParameterTypeDescription
upperLeftRowintUpper left row index.
upperLeftColumnintUpper left column index.
lowerRightRowintLower right row index
lowerRightColumnintLower right column index
fileNamejava.lang.StringImage filename.

Returns: int - GridPicture object index.

add(int upperLeftRow, int upperLeftColumn, InputStream stream)

public int add(int upperLeftRow, int upperLeftColumn, InputStream stream)

Adds a picture to the collection.

Parameters:

ParameterTypeDescription
upperLeftRowintUpper left row index.
upperLeftColumnintUpper left column index.
streamjava.io.InputStreamStream object which contains the image data.

Returns: int - GridPicture object index.

add(int upperLeftRow, int upperLeftColumn, String fileName)

public int add(int upperLeftRow, int upperLeftColumn, String fileName)

Adds a picture to the collection.

Parameters:

ParameterTypeDescription
upperLeftRowintUpper left row index.
upperLeftColumnintUpper left column index.
fileNamejava.lang.StringImage filename.

Returns: int - GridPicture object index.

add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale)

public int add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale)

Adds a picture to the collection.

Parameters:

ParameterTypeDescription
upperLeftRowintUpper left row index.
upperLeftColumnintUpper left column index.
fileNamejava.lang.StringImage filename.
widthScaleintScale of image width, a percentage.
heightScaleintScale of image height, a percentage.

Returns: int - GridPicture object index.

clear()

public void clear()

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

get(int index)

public GridPicture get(int index)

Gets the GridPicture element at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero based index of the element.

Returns: GridPicture - The element at the specified index.

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getCount()

public int getCount()

Returns: int

hashCode()

public native int hashCode()

Returns: int

iterator()

public Iterator iterator()

Gets the rows enumerator

Returns: java.util.Iterator - The rows enumerator

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

removeAt(int param_int)

public void removeAt(int param_int)

Parameters:

ParameterTypeDescription
param_intint

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int