### Eclipse Workspace Patch 1.0 #P org.eclipse.draw2d Index: src/org/eclipse/draw2d/SWTGraphics.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.draw2d/src/org/eclipse/draw2d/SWTGraphics.java,v retrieving revision 1.48 diff -u -r1.48 SWTGraphics.java --- src/org/eclipse/draw2d/SWTGraphics.java 21 Oct 2005 16:35:21 -0000 1.48 +++ src/org/eclipse/draw2d/SWTGraphics.java 15 Feb 2007 19:05:08 -0000 @@ -395,6 +395,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#drawPath(Path) */ public void drawPath(Path path) { @@ -520,6 +524,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#fillPath(Path) */ public void fillPath(Path path) { @@ -851,6 +859,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#rotate(float) */ public void rotate(float degrees) { @@ -873,6 +885,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see org.eclipse.draw2d.Graphics#scale(float, float) */ public void scale(float horizontal, float vertical) { @@ -904,6 +920,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#setAlpha(int) */ public void setAlpha(int alpha) { @@ -913,6 +933,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#setAntialias(int) */ public void setAntialias(int value) { @@ -947,6 +971,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#setClip(Path) */ public void setClip(Path path) { @@ -1008,6 +1036,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#setInterpolation(int) */ public void setInterpolation(int interpolation) { @@ -1069,6 +1101,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#setTextAntialias(int) */ public void setTextAntialias(int value) { @@ -1086,6 +1122,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#shear(float, float) */ public void shear(float horz, float vert) { @@ -1109,6 +1149,11 @@ } /** + * This method may require advanced graphics support if using a transform, + * in this case, a check should be made to ensure advanced graphics is + * supported in the user's environment before calling this method. See + * {@link GC#getAdvanced()}. + * * @see Graphics#translate(int, int) */ public void translate(int dx, int dy) { @@ -1130,6 +1175,10 @@ } /** + * This method requires advanced graphics support. A check should be made to + * ensure advanced graphics is supported in the user's environment before + * calling this method. See {@link GC#getAdvanced()}. + * * @see Graphics#translate(float, float) */ public void translate(float dx, float dy) {