diff options
author | Keiron Liddle <keiron@apache.org> | 2002-09-17 09:20:57 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2002-09-17 09:20:57 +0000 |
commit | 6a902da415ee9b89faa2007725e1afe7022c38e4 (patch) | |
tree | eaae04205bb03845c4951ba5088ab40c3b1b716b /src/org/apache/fop/pdf/PDFAction.java | |
parent | 859ead7de8cad0ef18f231428f1f372ab8843eed (diff) | |
download | xmlgraphics-fop-6a902da415ee9b89faa2007725e1afe7022c38e4.tar.gz xmlgraphics-fop-6a902da415ee9b89faa2007725e1afe7022c38e4.zip |
fixed some style errors
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195205 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/pdf/PDFAction.java')
-rw-r--r-- | src/org/apache/fop/pdf/PDFAction.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/apache/fop/pdf/PDFAction.java b/src/org/apache/fop/pdf/PDFAction.java index 2749a221f..de1626caf 100644 --- a/src/org/apache/fop/pdf/PDFAction.java +++ b/src/org/apache/fop/pdf/PDFAction.java @@ -1,6 +1,6 @@ /* * $Id$ - * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. + * Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved. * For details on use and redistribution please refer to the * LICENSE file included with these sources. */ @@ -30,7 +30,7 @@ public abstract class PDFAction extends PDFObject { * this constructor is used when there is no additional object being created * */ - public PDFAction() {} + public PDFAction() { } /** * represent the action to call @@ -40,7 +40,7 @@ public abstract class PDFAction extends PDFObject { * * @return the action to place next to /A within a Link */ - abstract public String getAction(); + public abstract String getAction(); /** @@ -50,6 +50,6 @@ public abstract class PDFAction extends PDFObject { * * @return the PDF string */ - abstract public byte[] toPDF(); + public abstract byte[] toPDF(); } |