Searched refs:parentY (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DWritableRaster.java168 * <p> The parentX, parentY, width and height parameters form a
180 * coordinate (parentX, parentY) in the current WritableRaster.
191 * parentX, childMinY equal to parentY, and bandList equal to
196 * @param parentY Y coordinate of the upper left corner in this
198 * @param w Width of the region starting at (parentX, parentY).
199 * @param h Height of the region starting at (parentX, parentY).
212 * <code>parentX + w</code>, <code>parentY + h</code>,
217 public WritableRaster createWritableChild(int parentX, int parentY, argument
224 if (parentY < this.minY) {
225 throw new RasterFormatException("parentY lie
[all...]
H A DRaster.java1264 * <p> The parentX, parentY, width and height parameters
1275 * will map to the same pixel as the coordinate (parentX, parentY)
1287 * childMinY equal to parentY, and bandList equal to null.
1291 * @param parentY The Y coordinate of the upper-left corner
1293 * @param width Width of the region starting at (parentX, parentY)
1294 * @param height Height of the region starting at (parentX, parentY).
1306 * <code>parentX + width</code>, <code>parentY + height</code>,
1311 public Raster createChild(int parentX, int parentY, argument
1318 if (parentY < this.minY) {
1319 throw new RasterFormatException("parentY lie
[all...]

Completed in 34 milliseconds