aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/ExternalGraphic.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/ExternalGraphic.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/ExternalGraphic.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/fo/flow/ExternalGraphic.java b/src/java/org/apache/fop/fo/flow/ExternalGraphic.java
index 3ca8cf777..f0285e6f4 100644
--- a/src/java/org/apache/fop/fo/flow/ExternalGraphic.java
+++ b/src/java/org/apache/fop/fo/flow/ExternalGraphic.java
@@ -30,7 +30,7 @@ import org.apache.fop.image.ImageFactory;
import org.xml.sax.Locator;
/**
- * External graphic formatting object.
+ * Class modelling the fo:external-graphic object.
* This FO node handles the external graphic. It creates an image
* inline area that can be added to the area tree.
*/
@@ -57,7 +57,7 @@ public class ExternalGraphic extends AbstractGraphics {
}
/**
- * @see org.apache.fop.fo.FObj#bind(PropertyList)
+ * {@inheritDoc}
*/
public void bind(PropertyList pList) throws FOPException {
super.bind(pList);
@@ -83,7 +83,7 @@ public class ExternalGraphic extends AbstractGraphics {
}
/**
- * @see org.apache.fop.fo.FONode#startOfNode
+ * {@inheritDoc}
*/
protected void startOfNode() throws FOPException {
super.startOfNode();
@@ -91,7 +91,7 @@ public class ExternalGraphic extends AbstractGraphics {
}
/**
- * @see org.apache.fop.fo.FONode#validateChildNode(Locator, String, String)
+ * {@inheritDoc}
* XSL Content Model: empty
*/
protected void validateChildNode(Locator loc, String nsURI, String localName)
@@ -113,34 +113,34 @@ public class ExternalGraphic extends AbstractGraphics {
return url;
}
- /** @see org.apache.fop.fo.FONode#getLocalName() */
+ /** {@inheritDoc} */
public String getLocalName() {
return "external-graphic";
}
/**
- * @see org.apache.fop.fo.FObj#getNameId()
+ * {@inheritDoc}
*/
public int getNameId() {
return FO_EXTERNAL_GRAPHIC;
}
/**
- * @see org.apache.fop.fo.flow.AbstractGraphics#getIntrinsicWidth()
+ * {@inheritDoc}
*/
public int getIntrinsicWidth() {
return this.intrinsicWidth;
}
/**
- * @see org.apache.fop.fo.flow.AbstractGraphics#getIntrinsicHeight()
+ * {@inheritDoc}
*/
public int getIntrinsicHeight() {
return this.intrinsicHeight;
}
/**
- * @see org.apache.fop.fo.flow.AbstractGraphics#getIntrinsicAlignmentAdjust()
+ * {@inheritDoc}
*/
public Length getIntrinsicAlignmentAdjust() {
return this.intrinsicAlignmentAdjust;