From: Peter Bernard West Date: Sat, 19 Oct 2002 03:45:40 +0000 (+0000) Subject: WritingMode conflict with properties.WritingMode X-Git-Tag: Alt-Design_pre_src-java-org~233 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=29678117918a2905fb7fc43cd66fdfae815929df;p=xmlgraphics-fop.git WritingMode conflict with properties.WritingMode git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195340 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/WritingMode.java b/src/org/apache/fop/fo/WritingMode.java deleted file mode 100644 index 2100bf1e4..000000000 --- a/src/org/apache/fop/fo/WritingMode.java +++ /dev/null @@ -1,20 +0,0 @@ -package org.apache.fop.fo; - -/* - * $Id$ - * - * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. - * For details on use and redistribution please refer to the - * LICENSE file included with these sources. - * @author Peter B. West - * @version $Revision$ $Name$ - */ -/** - * Constants interface for all writing modes. - */ - -public interface WritingMode { - public final static int LR_TB = 1; - public final static int RL_TB = 2; - public final static int TB_RL = 3; -} diff --git a/src/org/apache/fop/fo/WritingModes.java b/src/org/apache/fop/fo/WritingModes.java new file mode 100644 index 000000000..c6509f74a --- /dev/null +++ b/src/org/apache/fop/fo/WritingModes.java @@ -0,0 +1,20 @@ +package org.apache.fop.fo; + +/* + * $Id$ + * + * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. + * For details on use and redistribution please refer to the + * LICENSE file included with these sources. + * @author Peter B. West + * @version $Revision$ $Name$ + */ +/** + * Constants interface for all writing modes. + */ + +public interface WritingModes { + public final static int LR_TB = 1; + public final static int RL_TB = 2; + public final static int TB_RL = 3; +}