You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2007/03/16 17:30:20 UTC

svn commit: r519049 - /tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java

Author: apetrelli
Date: Fri Mar 16 09:30:19 2007
New Revision: 519049

URL: http://svn.apache.org/viewvc?view=rev&rev=519049
Log:
Corrected compilation error (due to Javadoc link!).

Modified:
    tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java

Modified: tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java?view=diff&rev=519049&r1=519048&r2=519049
==============================================================================
--- tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java (original)
+++ tiles/framework/trunk/tiles-api/src/main/java/org/apache/tiles/ComponentAttribute.java Fri Mar 16 09:30:19 2007
@@ -26,8 +26,6 @@
 import java.util.HashMap;
 import java.util.Map;
 
-import org.apache.tiles.context.ComponentListAttribute;
-
 /**
  * Common implementation of attribute definition.
  *
@@ -231,7 +229,7 @@
      *
      * @return The name of the attribute. It can be <code>null</code>, but in
      * this case it should be used as an element of
-     * {@link ComponentListAttribute}
+     * <code>ComponentListAttribute</code>
      */
     public String getName() {
         return name;
@@ -242,7 +240,7 @@
      *
      * @param name The name of the attribute. It can be <code>null</code>,
      * but in this case it should be used as an element of
-     * {@link ComponentListAttribute}
+     * <code>ComponentListAttribute</code>
      */
     public void setName(String name) {
         this.name = name;