Revision: 7599
Author: victormote
Date: 2006-06-14 13:52:05 -0700 (Wed, 14 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7599&view=rev
Log Message:
-----------
Conform to axsl change: Remove unused methods.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java 2006-06-14 20:41:13 UTC (rev 7598)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java 2006-06-14 20:52:05 UTC (rev 7599)
@@ -233,15 +233,17 @@
return effectiveParent(context).getNearestAncestorListBlock(context);
}
- /**
- * {@inheritDoc}
- */
- public org.axsl.foR.fo.Root getRoot(FOContext context) {
- return effectiveParent(context).getRoot(context);
+ public org.axsl.foR.fo.Root getRoot() {
+ return realParent().getRoot();
}
/**
- * {@inheritDoc}
+ * Finds the nearest self-or-ancestor that is a Block.
+ * @param context An object that knows how to resolve FO Tree context
+ * issues.
+ * @return If this is an instance of Block, returns this, otherwise returns
+ * the nearest ancestor that is a Block, or null if there is no ancestor
+ * Block.
*/
public org.axsl.foR.fo.Block getContainingBlock(FOContext context) {
return effectiveParent(context).getContainingBlock(context);
@@ -340,9 +342,6 @@
*/
public abstract Namespace getNamespace() ;
- /**
- * {@inheritDoc}
- */
public String getPropertyName(short propertyType) {
return getFOTreeBuilder().getPropertyName(propertyType);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|