Lines Matching defs:to

8  * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
30 *** As an unpublished work pursuant to Title 17 of the United
46 * WritableRenderedImage provides notification to other interested
49 * tile relinquishes its access (via a call to releaseWritableTile).
50 * Additionally, it allows any caller to determine whether any tiles
51 * are currently checked out (via hasTileWriters), and to obtain a
55 * Objects wishing to be notified of changes in tile writability must
57 * call to addTileObserver. Multiple calls to
63 * It is necessary for a WritableRenderedImage to ensure that
75 * @param to the specified <code>TileObserver</code>
77 public void addTileObserver(TileObserver to);
83 * @param to the specified <code>TileObserver</code>
85 public void removeTileObserver(TileObserver to);
92 * no writers to having one writer.
101 * Relinquishes the right to write to a tile. If the caller
102 * continues to write to the tile, the results are undefined.
103 * Calls to this method should only appear in matching pairs
104 * with calls to getWritableTile; any other use will lead
105 * to undefined results.
109 * to having no writers.
137 * Semantically equivalent to (getWritableTileIndices() != null).
144 * Sets a rect of the image to the contents of the Raster r, which is
145 * assumed to be in the same coordinate space as the WritableRenderedImage.
146 * The operation is clipped to the bounds of the WritableRenderedImage.