From: Peter Bernard West Date: Tue, 3 Sep 2002 03:23:48 +0000 (+0000) Subject: Constants interface X-Git-Tag: Alt-Design_pre_Properties_split~137 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8b406939de6a6901f7b6bf1035bfc3f0e8fe09a9;p=xmlgraphics-fop.git Constants interface git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195140 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/WritingMode.java b/src/org/apache/fop/fo/WritingMode.java new file mode 100644 index 000000000..2100bf1e4 --- /dev/null +++ b/src/org/apache/fop/fo/WritingMode.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 WritingMode { + public final static int LR_TB = 1; + public final static int RL_TB = 2; + public final static int TB_RL = 3; +}