aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/Float.java
diff options
context:
space:
mode:
authorAdrian Cumiskey <acumiskey@apache.org>2008-04-30 11:02:03 +0000
committerAdrian Cumiskey <acumiskey@apache.org>2008-04-30 11:02:03 +0000
commit1ad900d08ad58f356f1789813c18a0096c889d5b (patch)
tree4233207b0c7f5b3a1190cc53fe19a9756fdfd01d /src/java/org/apache/fop/fo/flow/Float.java
parent637c844c8a6130f1c804afa7f3e2b3bd884e1bee (diff)
downloadxmlgraphics-fop-1ad900d08ad58f356f1789813c18a0096c889d5b.tar.gz
xmlgraphics-fop-1ad900d08ad58f356f1789813c18a0096c889d5b.zip
Merged revisions 651853,651855-651856,651866-651867,651880,651898 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk ........ r651853 | adelmelle | 2008-04-26 21:06:04 +0100 (Sat, 26 Apr 2008) | 3 lines Bugzilla 44203: Fixed a logic error in Hyphenator.java where an UnsupportedOperationException was erroneously thrown if the supplied source had an associated InputStream. ........ r651855 | adelmelle | 2008-04-26 21:19:59 +0100 (Sat, 26 Apr 2008) | 3 lines Basic activation of keep-* properties on Character and AbstractGraphics + javadoc updates ........ r651856 | adelmelle | 2008-04-26 21:21:44 +0100 (Sat, 26 Apr 2008) | 3 lines Basic activation on some widely used properties (prepare for implementation) + javadoc updates ........ r651866 | adelmelle | 2008-04-26 23:08:10 +0100 (Sat, 26 Apr 2008) | 2 lines Javadoc updates: attempt at improving interactivity and consistency ........ r651867 | adelmelle | 2008-04-27 00:07:51 +0100 (Sun, 27 Apr 2008) | 2 lines Minor refactoring: consolidate getPSLM().notifyEndOfLayout(fobj.getId()) in AbstractLayoutManager.notifyEndOfLayout() ........ r651880 | clay | 2008-04-27 04:27:39 +0100 (Sun, 27 Apr 2008) | 1 line Updated to include dev (0.95beta) release. ........ r651898 | adelmelle | 2008-04-27 09:18:31 +0100 (Sun, 27 Apr 2008) | 1 line Correction of r651866 ........ git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@652318 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Float.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/Float.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Float.java b/src/java/org/apache/fop/fo/flow/Float.java
index 57d3b4ee1..90bc423fd 100644
--- a/src/java/org/apache/fop/fo/flow/Float.java
+++ b/src/java/org/apache/fop/fo/flow/Float.java
@@ -29,7 +29,8 @@ import org.apache.fop.fo.PropertyList;
import org.apache.fop.fo.ValidationException;
/**
- * Class modelling the fo:float object.
+ * Class modelling the <a href="http://www.w3.org/TR/xsl/#fo_float">
+ * <code>fo:float</code></a> object.
*/
public class Float extends FObj {
// The value of properties relevant for fo:float (commented out for performance.
@@ -40,7 +41,9 @@ public class Float extends FObj {
static boolean notImplementedWarningGiven = false;
/**
- * @see org.apache.fop.fo.FONode#FONode(FONode)
+ * Base constructor
+ *
+ * @param parent the parent {@link FONode}
*/
public Float(FONode parent) {
super(parent);
@@ -52,16 +55,14 @@ public class Float extends FObj {
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void bind(PropertyList pList) throws FOPException {
// No active properties -> Nothing to do.
}
/**
* {@inheritDoc}
- * XSL Content Model: (%block;)+
+ * <br>XSL Content Model: (%block;)+
*/
protected void validateChildNode(Locator loc, String nsURI, String localName)
throws ValidationException {
@@ -72,9 +73,7 @@ public class Float extends FObj {
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
protected void endOfNode() throws FOPException {
if (firstChild == null) {
missingChildElementError("(%block;)+");
@@ -88,6 +87,7 @@ public class Float extends FObj {
/**
* {@inheritDoc}
+ * @return {@link org.apache.fop.fo.Constants#FO_FLOAT}
*/
public int getNameId() {
return FO_FLOAT;