aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/CharIterator.java
diff options
context:
space:
mode:
authorKaren Lease <klease@apache.org>2001-11-21 22:13:36 +0000
committerKaren Lease <klease@apache.org>2001-11-21 22:13:36 +0000
commit4a45db76cee354948589f04c075dc0bdc943c9ca (patch)
treec1c904e9eb7d1350f6acd78ad39971153a6886c6 /src/org/apache/fop/fo/CharIterator.java
parent427d4fb27ee610cb77c29a637ca59356a3d54842 (diff)
downloadxmlgraphics-fop-4a45db76cee354948589f04c075dc0bdc943c9ca.tar.gz
xmlgraphics-fop-4a45db76cee354948589f04c075dc0bdc943c9ca.zip
Remove extra whitespace during FO tree construction
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194572 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/CharIterator.java')
-rw-r--r--src/org/apache/fop/fo/CharIterator.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/CharIterator.java b/src/org/apache/fop/fo/CharIterator.java
new file mode 100644
index 000000000..a0657ed8a
--- /dev/null
+++ b/src/org/apache/fop/fo/CharIterator.java
@@ -0,0 +1,19 @@
+/*
+ * $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;
+
+import java.util.Iterator;
+import java.util.NoSuchElementException;
+
+
+public interface CharIterator extends Iterator {
+
+ char nextChar() throws NoSuchElementException ;
+ void replaceChar(char c);
+ Object clone();
+}