Return-Path: Delivered-To: apmail-xmlgraphics-commits-archive@www.apache.org Received: (qmail 58739 invoked from network); 30 May 2010 15:10:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 May 2010 15:10:55 -0000 Received: (qmail 69096 invoked by uid 500); 30 May 2010 15:10:55 -0000 Mailing-List: contact commits-help@xmlgraphics.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@xmlgraphics.apache.org Delivered-To: mailing list commits@xmlgraphics.apache.org Received: (qmail 69089 invoked by uid 99); 30 May 2010 15:10:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 May 2010 15:10:55 +0000 X-ASF-Spam-Status: No, hits=-1292.6 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 May 2010 15:10:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A862E238897A; Sun, 30 May 2010 15:10:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r949527 - in /xmlgraphics/commons/trunk: src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java status.xml Date: Sun, 30 May 2010 15:10:34 -0000 To: commits@xmlgraphics.apache.org From: jeremias@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100530151034.A862E238897A@eris.apache.org> Author: jeremias Date: Sun May 30 15:10:34 2010 New Revision: 949527 URL: http://svn.apache.org/viewvc?rev=949527&view=rev Log: Bugzilla #49337: Moved method disableClipping from AbstractPSDocumentGraphics2D to PSGraphics2D. Submitted by: Submitted by: Julien Aymé Modified: xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java xmlgraphics/commons/trunk/status.xml Modified: xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java?rev=949527&r1=949526&r2=949527&view=diff ============================================================================== --- xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java (original) +++ xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/AbstractPSDocumentGraphics2D.java Sun May 30 15:10:34 2010 @@ -90,15 +90,6 @@ public abstract class AbstractPSDocument } /** - * Disable clipping on each draw command. - * - * @param b set to true to disable all clipping. - */ - public void disableClipping(boolean b) { - this.clippingDisabled = b; - } - - /** * Writes the file header. * @throws IOException if an I/O error occurs */ Modified: xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java?rev=949527&r1=949526&r2=949527&view=diff ============================================================================== --- xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java (original) +++ xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/java2d/ps/PSGraphics2D.java Sun May 30 15:10:34 2010 @@ -173,6 +173,15 @@ public class PSGraphics2D extends Abstra }*/ /** + * Disable clipping on each draw command. + * + * @param b set to true to disable all clipping. + */ + public void disableClipping(boolean b) { + this.clippingDisabled = b; + } + + /** * Creates a new Graphics object that is * a copy of this Graphics object. * @return a new graphics context that is a copy of Modified: xmlgraphics/commons/trunk/status.xml URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/status.xml?rev=949527&r1=949526&r2=949527&view=diff ============================================================================== --- xmlgraphics/commons/trunk/status.xml (original) +++ xmlgraphics/commons/trunk/status.xml Sun May 30 15:10:34 2010 @@ -40,6 +40,9 @@ + + Moved method disableClipping from AbstractPSDocumentGraphics2D to PSGraphics2D. + Added getter and setter for enabling/disabling comments in PSGenerator. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org For additional commands, e-mail: commits-help@xmlgraphics.apache.org