Author: apetrelli
Date: Tue Mar 20 08:44:41 2007
New Revision: 520438
URL: http://svn.apache.org/viewvc?view=rev&rev=520438
Log:
TILES-86
Added Javadoc comments.
TILES-139
Removed ComponentConstants.EXCEPTION_KEY.
Modified:
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/ComponentConstants.java
Modified:
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/ComponentConstants.java
URL:
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/ComponentConstants.java?view=diff&rev=520438&r1=520437&r2=520438
==============================================================================
---
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/ComponentConstants.java
(original)
+++
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/ComponentConstants.java
Tue Mar 20 08:44:41 2007
@@ -34,8 +34,15 @@
*/
public static final String COMPONENT_CONTEXT_STACK =
"org.apache.tiles.ComponentContext.STACK";
+ /**
+ * It represents the scope under Tiles attributes are stored.
+ */
+ // FIXME Probably it is not needed
public static final int COMPONENT_SCOPE = 8;
+
+ /**
+ * The attribute name that is used to store the current locale.
+ */
public static final String LOCALE_KEY = "org.apache.tiles.LOCALE";
- public static final String EXCEPTION_KEY = "org.apache.tiles.EXCEPTION";
}