aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/Inline.java
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2007-07-18 17:37:14 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2007-07-18 17:37:14 +0000
commit4e921e05c7204e345525cf3e3312d8b8342d4b63 (patch)
tree05812a48470db3fa5acfb64156704485e86327ed /src/java/org/apache/fop/fo/flow/Inline.java
parent8fcc676984fbb4b8023f79a51dc2fb9fdff1bbb4 (diff)
downloadxmlgraphics-fop-4e921e05c7204e345525cf3e3312d8b8342d4b63.tar.gz
xmlgraphics-fop-4e921e05c7204e345525cf3e3312d8b8342d4b63.zip
* Javadoc update: use {@inheritDoc} instead of @see where applicable, removal of some @author tags
* Additional code cleanup: removal of unused imports (mainly in the fo.flow package) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@557337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Inline.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/Inline.java22
1 files changed, 6 insertions, 16 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Inline.java b/src/java/org/apache/fop/fo/flow/Inline.java
index d9ac5136b..6bbd90ad1 100644
--- a/src/java/org/apache/fop/fo/flow/Inline.java
+++ b/src/java/org/apache/fop/fo/flow/Inline.java
@@ -23,14 +23,9 @@ import org.xml.sax.Locator;
import org.apache.fop.apps.FOPException;
import org.apache.fop.datatypes.Length;
-import org.apache.fop.fo.CharIterator;
import org.apache.fop.fo.FONode;
-import org.apache.fop.fo.OneCharIterator;
import org.apache.fop.fo.PropertyList;
import org.apache.fop.fo.ValidationException;
-import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.fo.properties.KeepProperty;
-import org.apache.fop.fo.properties.LengthRangeProperty;
/**
* Class modelling the fo:inline formatting object.
@@ -47,9 +42,6 @@ public class Inline extends InlineLevel {
// private LengthRangeProperty blockProgressionDimension;
// private Length height;
// private LengthRangeProperty inlineProgressionDimension;
- // private KeepProperty keepTogether;
- // private KeepProperty keepWithNext;
- // private KeepProperty keepWithPrevious;
// private Length width;
// private int wrapOption;
// End of property values
@@ -65,7 +57,7 @@ public class Inline extends InlineLevel {
}
/**
- * @see org.apache.fop.fo.FObj#bind(PropertyList)
+ * {@inheritDoc}
*/
public void bind(PropertyList pList) throws FOPException {
super.bind(pList);
@@ -76,7 +68,7 @@ public class Inline extends InlineLevel {
}
/**
- * @see org.apache.fop.fo.FONode#startOfNode
+ * {@inheritDoc}
*/
protected void startOfNode() throws FOPException {
super.startOfNode();
@@ -103,7 +95,7 @@ public class Inline extends InlineLevel {
}
/**
- * @see org.apache.fop.fo.FONode#endOfNode
+ * {@inheritDoc}
*/
protected void endOfNode() throws FOPException {
super.endOfNode();
@@ -111,7 +103,7 @@ public class Inline extends InlineLevel {
}
/**
- * @see org.apache.fop.fo.FONode#validateChildNode(Locator, String, String)
+ * {@inheritDoc}
* XSL Content Model: marker* (#PCDATA|%inline;|%block;)*
* Additionally: " An fo:inline that is a descendant of an fo:leader
* or fo:footnote may not have block-level children, unless it has a
@@ -166,14 +158,12 @@ public class Inline extends InlineLevel {
return dominantBaseline;
}
- /** @see org.apache.fop.fo.FONode#getLocalName() */
+ /** {@inheritDoc} */
public String getLocalName() {
return "inline";
}
- /**
- * @see org.apache.fop.fo.FObj#getNameId()
- */
+ /** {@inheritDoc} */
public int getNameId() {
return FO_INLINE;
}