You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by jm...@apache.org on 2005/09/13 06:02:10 UTC

svn commit: r280486 - in /struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti: ./ core/ core/factory/ core/urls/

Author: jmitchell
Date: Mon Sep 12 21:01:47 2005
New Revision: 280486

URL: http://svn.apache.org/viewcvs?rev=280486&view=rev
Log:
A round of javadoc/svn keyword changes, on my way to making checkstyle report happy

Modified:
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/Globals.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/ActionMessage.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/URLCodec.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/Factory.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryConfig.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryUtils.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/FreezableMutableURI.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/MutableURI.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/TemplatedURLFormatter.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URIContext.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriter.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriterService.java
    struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLType.java

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/Globals.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/Globals.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/Globals.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/Globals.java Mon Sep 12 21:01:47 2005
@@ -22,18 +22,21 @@
 import java.io.Serializable;
 
 /**
- * @todo Should this class simply go away?  Do we want to expose public constants for these things (vs. APIs)?
+ * @todo Should this class simply go away?  Do we want to expose public 
+ * constants for these things (vs. APIs)?
  */
 public class Globals implements Serializable {
 
 
     /**
-     * The request attribute for a List of {@link org.apache.ti.core.ActionMessage} objects.
+     * The request attribute for a List of 
+     * {@link org.apache.ti.core.ActionMessage} objects.
      */
     public static final String ERROR_KEY = "org.apache.ti.ERROR";
 
     /**
-     * The request attribute for a Throwable that was raised during action processing.
+     * The request attribute for a Throwable that was raised during action 
+     * processing.
      */
     public static final String EXCEPTION_KEY = "org.apache.ti.EXCEPTION";
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/ActionMessage.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/ActionMessage.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/ActionMessage.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/ActionMessage.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/URLCodec.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/URLCodec.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/URLCodec.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/URLCodec.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/Factory.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/Factory.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/Factory.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/Factory.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.factory;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryConfig.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryConfig.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryConfig.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryConfig.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.factory;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryUtils.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryUtils.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryUtils.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/factory/FactoryUtils.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.factory;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/FreezableMutableURI.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/FreezableMutableURI.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/FreezableMutableURI.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/FreezableMutableURI.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/MutableURI.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/MutableURI.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/MutableURI.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/MutableURI.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/TemplatedURLFormatter.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/TemplatedURLFormatter.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/TemplatedURLFormatter.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/TemplatedURLFormatter.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2005 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URIContext.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URIContext.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URIContext.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URIContext.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriter.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriter.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriter.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriter.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriterService.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriterService.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriterService.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLRewriterService.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 

Modified: struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLType.java
URL: http://svn.apache.org/viewcvs/struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLType.java?rev=280486&r1=280485&r2=280486&view=diff
==============================================================================
--- struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLType.java (original)
+++ struts/sandbox/trunk/ti/jars/core/src/java/org/apache/ti/core/urls/URLType.java Mon Sep 12 21:01:47 2005
@@ -1,4 +1,5 @@
 /*
+ * $Id$
  * Copyright 2004 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Header:$
  */
 package org.apache.ti.core.urls;
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org