[aXSL-commit] SF.net SVN: axsl: [518] trunk/axsl/axsl-fo-r/src/java/org/axsl/foR/FONodeProxy.java
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-05-08 17:25:34
|
Revision: 518 Author: victormote Date: 2006-05-06 08:56:26 -0700 (Sat, 06 May 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=518&view=rev Log Message: ----------- Since it must be recast anyway, just make FONodeProxy a marker interface. Modified Paths: -------------- trunk/axsl/axsl-fo-r/src/java/org/axsl/foR/FONodeProxy.java Modified: trunk/axsl/axsl-fo-r/src/java/org/axsl/foR/FONodeProxy.java =================================================================== --- trunk/axsl/axsl-fo-r/src/java/org/axsl/foR/FONodeProxy.java 2006-05-06 13:29:57 UTC (rev 517) +++ trunk/axsl/axsl-fo-r/src/java/org/axsl/foR/FONodeProxy.java 2006-05-06 15:56:26 UTC (rev 518) @@ -21,7 +21,7 @@ package org.axsl.foR; /** - * <p>Interface that allows pluggable extension of FONodes in the FOTree + * <p>Marker interface that allows pluggable extension of FONodes in the FOTree * without the need to subclass. * If subclassing is vertical extension, then FONodeProxy is a horizontal * extension. @@ -35,15 +35,8 @@ * information.</p> * * <p>More information about the <em>proxy</em> design pattern can be found - * in the Gang of Four literature. This specific implementation shares some - * characteristics of the Protection Proxy and of the Smart Reference.</p> + * in the Gang of Four literature.</p> */ public interface FONodeProxy { - /** - * Returns the FONode for which this proxy stands. - * @return The FONode that is attached to this proxy. - */ - public FONode getFONode() ; - } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |