summaryrefslogtreecommitdiff
path: root/java/awt/image/RasterOp.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/awt/image/RasterOp.java')
-rw-r--r--java/awt/image/RasterOp.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/java/awt/image/RasterOp.java b/java/awt/image/RasterOp.java
index 656370e8b..2b2c0731f 100644
--- a/java/awt/image/RasterOp.java
+++ b/java/awt/image/RasterOp.java
@@ -53,13 +53,13 @@ public interface RasterOp
* writable raster. If <code>dest</code> is <code>null</code>, a new
* <code>WritableRaster</code> will be created by calling the
* {@link #createCompatibleDestRaster(Raster)} method. If <code>dest</code>
- * is not <code>null</code>, the result is written to <code>dest</code> then
- * returned (this avoids creating a new <code>WritableRaster</code> each
+ * is not <code>null</code>, the result is written to <code>dest</code> then
+ * returned (this avoids creating a new <code>WritableRaster</code> each
* time this method is called).
- *
+ *
* @param src the source raster.
* @param dest the destination raster (<code>null</code> permitted).
- *
+ *
* @return The filtered raster.
*/
WritableRaster filter(Raster src, WritableRaster dest);
@@ -67,9 +67,9 @@ public interface RasterOp
/**
* Returns the bounds of the destination raster on the basis of this
* <code>RasterOp</code> being applied to the specified source raster.
- *
+ *
* @param src the source raster.
- *
+ *
* @return The destination bounds.
*/
Rectangle2D getBounds2D(Raster src);
@@ -77,9 +77,9 @@ public interface RasterOp
/**
* Returns a raster that can be used by this <code>RasterOp</code> as the
* destination raster when operating on the specified source raster.
- *
+ *
* @param src the source raster.
- *
+ *
* @return A new writable raster that can be used as the destination raster.
*/
WritableRaster createCompatibleDestRaster(Raster src);
@@ -87,19 +87,18 @@ public interface RasterOp
/**
* Returns the point on the destination raster that corresponds to the given
* point on the source raster.
- *
+ *
* @param srcPoint the source point.
* @param destPoint the destination point (<code>null</code> permitted).
- *
+ *
* @return The destination point.
*/
Point2D getPoint2D(Point2D srcPoint, Point2D destPoint);
/**
* Returns the rendering hints for this operation.
- *
+ *
* @return The rendering hints.
*/
RenderingHints getRenderingHints();
}
-