Author: wsmoak
Date: Thu Sep 8 22:17:12 2005
New Revision: 279704
URL: http://svn.apache.org/viewcvs?rev=279704&view=rev
Log:
Added missing svn props
Modified:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Address.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Contact.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/GenericComparator.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
(contents, props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/RolodexDao.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/State.java
(props changed)
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/dex.xml
(props changed)
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Address.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Address.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Contact.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Contact.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/GenericComparator.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/GenericComparator.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Modified:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
URL:
http://svn.apache.org/viewcvs/struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java?rev=279704&r1=279703&r2=279704&view=diff
==============================================================================
---
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
(original)
+++
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
Thu Sep 8 22:17:12 2005
@@ -1,72 +1,72 @@
-/*
- * Copyright 2004-2005 The Apache Software Foundation.
- *
- * Licensed 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.shale.usecases.rolodex;
-
-/**
- * <p>This class simulates the classic struts FormBean. The
- * request query parameter will be populated via the managed
- * bean property setter injection.</p>
-
- */
-public class QueryParam {
-
- /**
- * <p>Holds the value of the target tab index when
- * clicking on a tab, <code>"#{managed-bean-name.changeTab}"}</code>.
- * </p>
- */
- private String tabIndex = null;
-
- /**
- * <p>Holds the selected name when clicking on a contact,
- * <code>"#{managed-bean-name.selectContact}"</code>.</p>
- */
- private String selectedName = null;
-
-
- /**
- * @return Returns the tabIndex.
- */
- public String getTabIndex() {
- return tabIndex;
- }
-
-
- /**
- * @param tabIndex The tabIndex to set.
- */
- public void setTabIndex(String tabIndex) {
- this.tabIndex = tabIndex;
- }
-
-
- /**
- * @return Returns the selectedName.
- */
- public String getSelectedName() {
- return selectedName;
- }
-
-
- /**
- * @param selectedName The selectedName to set.
- */
- public void setSelectedName(String selectedName) {
- this.selectedName = selectedName;
- }
-
-}
+/*
+ * Copyright 2004-2005 The Apache Software Foundation.
+ *
+ * Licensed 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.shale.usecases.rolodex;
+
+/**
+ * <p>This class simulates the classic struts FormBean. The
+ * request query parameter will be populated via the managed
+ * bean property setter injection.</p>
+
+ */
+public class QueryParam {
+
+ /**
+ * <p>Holds the value of the target tab index when
+ * clicking on a tab, <code>"#{managed-bean-name.changeTab}"}</code>.
+ * </p>
+ */
+ private String tabIndex = null;
+
+ /**
+ * <p>Holds the selected name when clicking on a contact,
+ * <code>"#{managed-bean-name.selectContact}"</code>.</p>
+ */
+ private String selectedName = null;
+
+
+ /**
+ * @return Returns the tabIndex.
+ */
+ public String getTabIndex() {
+ return tabIndex;
+ }
+
+
+ /**
+ * @param tabIndex The tabIndex to set.
+ */
+ public void setTabIndex(String tabIndex) {
+ this.tabIndex = tabIndex;
+ }
+
+
+ /**
+ * @return Returns the selectedName.
+ */
+ public String getSelectedName() {
+ return selectedName;
+ }
+
+
+ /**
+ * @param selectedName The selectedName to set.
+ */
+ public void setSelectedName(String selectedName) {
+ this.selectedName = selectedName;
+ }
+
+}
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/QueryParam.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/Rolodex.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/RolodexDao.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/RolodexDao.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/State.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/State.java
------------------------------------------------------------------------------
svn:keywords = date author id rev
Propchange:
struts/shale/trunk/use-cases/src/java/org/apache/shale/usecases/rolodex/dex.xml
------------------------------------------------------------------------------
svn:keywords = author date id
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]