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/02/12 17:49:32 UTC

svn commit: r506530 - /tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java

Author: apetrelli
Date: Mon Feb 12 08:49:32 2007
New Revision: 506530

URL: http://svn.apache.org/viewvc?view=rev&rev=506530
Log:
I forgot to put some svn property...

Modified:
    tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java   (contents, props changed)

Modified: tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java
URL: http://svn.apache.org/viewvc/tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java?view=diff&rev=506530&r1=506529&r2=506530
==============================================================================
--- tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java (original)
+++ tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java Mon Feb 12 08:49:32 2007
@@ -1,43 +1,43 @@
-/*
- * $Id: UserMenuAction.java 493466 2007-01-06 13:00:16Z apetrelli $
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-package org.apache.tiles.showcase.channel;
-
-import org.apache.tiles.ComponentAttribute;
-
-/**
- * @version $Rev$ $Date$
- */
-public class AttributeUtils {
-
-    private AttributeUtils() {
-    }
-    
-    public static String getAttributeValueAsString(ComponentAttribute attribute) {
-        String retValue = null;
-        
-        if (attribute != null) {
-            retValue = (String) attribute.getValue();
-        }
-        
-        return retValue;
-    }
-}
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+package org.apache.tiles.showcase.channel;
+
+import org.apache.tiles.ComponentAttribute;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class AttributeUtils {
+
+    private AttributeUtils() {
+    }
+    
+    public static String getAttributeValueAsString(ComponentAttribute attribute) {
+        String retValue = null;
+        
+        if (attribute != null) {
+            retValue = (String) attribute.getValue();
+        }
+        
+        return retValue;
+    }
+}

Propchange: tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tiles/examples/trunk/tiles-showcase/src/main/java/org/apache/tiles/showcase/channel/AttributeUtils.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL