Author: sabob
Date: Sun May 31 20:35:19 2009
New Revision: 780503
URL: http://svn.apache.org/viewvc?rev=780503&view=rev
Log:
enable polymorphic request binding for all links
Modified:
incubator/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java
Modified: incubator/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java?rev=780503&r1=780502&r2=780503&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/control/AbstractLink.java Sun
May 31 20:35:19 2009
@@ -476,6 +476,13 @@
// --------------------------------------------------------- Public Methods
/**
+ * This method does nothing by default since AbstractLink does not bind to
+ * request values.
+ */
+ public void bindRequestValue() {
+ }
+
+ /**
* Render the HTML representation of the anchor link. This method
* will render the entire anchor link including the tags, the label and
* any attributes, see {@link #setAttribute(String, String)} for an
|