]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
no longer needed
authorKeiron Liddle <keiron@apache.org>
Mon, 15 Jul 2002 09:10:31 +0000 (09:10 +0000)
committerKeiron Liddle <keiron@apache.org>
Mon, 15 Jul 2002 09:10:31 +0000 (09:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194998 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/Status.java [deleted file]

diff --git a/src/org/apache/fop/fo/Status.java b/src/org/apache/fop/fo/Status.java
deleted file mode 100644 (file)
index 58f14c1..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * $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.
- */
-
-package org.apache.fop.fo;
-
-/**
- * classes representating the status of laying out a formatting object
- */
-public class Status {
-
-    protected int code;
-
-    public final static int OK = 1;
-    public final static int AREA_FULL_NONE = 2;
-    public final static int AREA_FULL_SOME = 3;
-    public final static int FORCE_PAGE_BREAK = 4;
-    public final static int FORCE_PAGE_BREAK_EVEN = 5;
-    public final static int FORCE_PAGE_BREAK_ODD = 6;
-    public final static int FORCE_COLUMN_BREAK = 7;
-    public final static int KEEP_WITH_NEXT = 8;
-
-    public Status(int code) {
-        this.code = code;
-    }
-
-    public int getCode() {
-        return this.code;
-    }
-
-    public boolean isIncomplete() {
-        return ((this.code != OK) && (this.code != KEEP_WITH_NEXT));
-    }
-
-    public boolean laidOutNone() {
-        return (this.code == AREA_FULL_NONE);
-    }
-
-    public boolean isPageBreak() {
-        return ((this.code == FORCE_PAGE_BREAK)
-                || (this.code == FORCE_PAGE_BREAK_EVEN)
-                || (this.code == FORCE_PAGE_BREAK_ODD));
-    }
-
-}