aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/MultiCase.java
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2008-04-26 22:08:10 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2008-04-26 22:08:10 +0000
commitac29c8eee27bd00826799d94c192e46459505007 (patch)
tree7df9e3128e6dbf63ccb8fe0fa13cad25f1bcb626 /src/java/org/apache/fop/fo/flow/MultiCase.java
parent83d3be0ad93e70213c4008e8aa1ccf326a9fae3b (diff)
downloadxmlgraphics-fop-ac29c8eee27bd00826799d94c192e46459505007.tar.gz
xmlgraphics-fop-ac29c8eee27bd00826799d94c192e46459505007.zip
Javadoc updates: attempt at improving interactivity and consistency
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@651866 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/MultiCase.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/MultiCase.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/java/org/apache/fop/fo/flow/MultiCase.java b/src/java/org/apache/fop/fo/flow/MultiCase.java
index e568fba46..284d82d63 100644
--- a/src/java/org/apache/fop/fo/flow/MultiCase.java
+++ b/src/java/org/apache/fop/fo/flow/MultiCase.java
@@ -25,7 +25,8 @@ import org.apache.fop.fo.FObj;
import org.apache.fop.fo.PropertyList;
/**
- * Class modelling the fo:multi-case object.
+ * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_multi-case">
+ * <code>fo:multi-case</code></a> object.
* @todo implement validateChildNode()
*/
public class MultiCase extends FObj {
@@ -40,7 +41,9 @@ public class MultiCase extends FObj {
static boolean notImplementedWarningGiven = false;
/**
- * @param parent FONode that is the parent of this object
+ * Base constructor
+ *
+ * @param parent {@link FONode} that is the parent of this object
*/
public MultiCase(FONode parent) {
super(parent);
@@ -52,9 +55,7 @@ public class MultiCase extends FObj {
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException {
super.bind(pList);
startingState = pList.get(PR_STARTING_STATE).getEnum();
@@ -62,9 +63,7 @@ public class MultiCase extends FObj {
// caseTitle = pList.get(PR_CASE_TITLE);
}
- /**
- * Return the "starting-state" property.
- */
+ /** @return the "starting-state" property */
public int getStartingState() {
return startingState;
}
@@ -76,6 +75,7 @@ public class MultiCase extends FObj {
/**
* {@inheritDoc}
+ * @return {@link org.apache.fop.fo.Constants#FO_MULTI_CASE}
*/
public int getNameId() {
return FO_MULTI_CASE;