]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
WritingMode conflict with properties.WritingMode
authorPeter Bernard West <pbwest@apache.org>
Sat, 19 Oct 2002 03:45:40 +0000 (03:45 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sat, 19 Oct 2002 03:45:40 +0000 (03:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195340 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/WritingMode.java [deleted file]
src/org/apache/fop/fo/WritingModes.java [new file with mode: 0644]

diff --git a/src/org/apache/fop/fo/WritingMode.java b/src/org/apache/fop/fo/WritingMode.java
deleted file mode 100644 (file)
index 2100bf1..0000000
+++ /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 <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
- * @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 (file)
index 0000000..c6509f7
--- /dev/null
@@ -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 <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
+ * @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;
+}