Lines Matching defs:data

41  * This class extends <CODE>DataBuffer</CODE> and stores data internally
46 * if they can maintain control over how the data for an image is
50 * to that data.
52 * data in locations other than a Java array.
61 /** The default data bank. */
62 int data[];
64 /** All data banks */
75 data = new int[size];
77 bankdata[0] = data;
93 data = bankdata[0];
113 data = dataArray;
115 bankdata[0] = data;
136 data = dataArray;
138 bankdata[0] = data;
158 data = bankdata[0];
183 data = bankdata[0];
187 * Returns the default (first) int data array in <CODE>DataBuffer</CODE>.
194 * @return The first integer data array.
198 return data;
202 * Returns the data array for the specified bank.
209 * @param bank The bank whose data array you want to get.
210 * @return The data array for the specified bank.
218 * Returns the data arrays for all banks.
225 * @return All of the data arrays.
233 * Returns the requested data array element from the first (default) bank.
235 * @param i The data array element you want to get.
236 * @return The requested data array element as an integer.
241 return data[i+offset];
245 * Returns the requested data array element from the specified bank.
247 * @param bank The bank from which you want to get a data array element.
248 * @param i The data array element you want to get.
249 * @return The requested data array element as an integer.
258 * Sets the requested data array element in the first (default) bank
261 * @param i The data array element you want to set.
262 * @param val The integer value to which you want to set the data array element.
267 data[i+offset] = val;
272 * Sets the requested data array element in the specified bank
274 * @param bank The bank in which you want to set the data array element.
275 * @param i The data array element you want to set.
276 * @param val The integer value to which you want to set the specified data array element.