diff options
author | jtauber <jtauber@unknown> | 1999-11-22 02:32:21 +0000 |
---|---|---|
committer | jtauber <jtauber@unknown> | 1999-11-22 02:32:21 +0000 |
commit | 8db42fcc7af041a77223683e11e053ffb82c4847 (patch) | |
tree | 81748e94daccc781c60ee1d2bcf5a6105ab3070f /src/org/apache/fop/fo/FObjMixed.java | |
parent | abd622447e632998a8c9a5fbf40aec5e0ce73315 (diff) | |
download | xmlgraphics-fop-8db42fcc7af041a77223683e11e053ffb82c4847.tar.gz xmlgraphics-fop-8db42fcc7af041a77223683e11e053ffb82c4847.zip |
removed multiple CRs at end of lines
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193230 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/FObjMixed.java')
-rw-r--r-- | src/org/apache/fop/fo/FObjMixed.java | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/org/apache/fop/fo/FObjMixed.java b/src/org/apache/fop/fo/FObjMixed.java index 53d74a6e2..a005991ec 100644 --- a/src/org/apache/fop/fo/FObjMixed.java +++ b/src/org/apache/fop/fo/FObjMixed.java @@ -50,99 +50,50 @@ */ package org.apache.fop.fo; - - import org.apache.fop.layout.Area; - import org.apache.fop.apps.FOPException; - - /** - * base class for representation of mixed content formatting objects - * and their processing - */ - public class FObjMixed extends FObj { - - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, PropertyList propertyList) - throws FOPException { - return new FObjMixed(parent, propertyList); - } - } - - public static FObj.Maker maker() { - return new FObjMixed.Maker(); - } - - protected FObjMixed(FObj parent, PropertyList propertyList) { - super(parent, propertyList); - } - - protected void addCharacters(char data[], int start, int length) { - children.addElement(new FOText(data,start,length,this)); - } - - public int layout(Area area) throws FOPException { - - if (this.marker == START) { - this.marker = 0; - } - - int numChildren = this.children.size(); - for (int i = this.marker; i < numChildren; i++) { - FONode fo = (FONode) children.elementAt(i); - int status; - if ((status = fo.layout(area)) != OK) { - this.marker = i; - return status; - } - } - return OK; - } - } - - |