You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jc...@apache.org on 2005/09/08 14:00:08 UTC

svn commit: r279557 - /jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java

Author: jcarman
Date: Thu Sep  8 05:00:06 2005
New Revision: 279557

URL: http://svn.apache.org/viewcvs?rev=279557&view=rev
Log:
Added in test cases for abstract superclasses (shed light on another bug with interface hierarchies).

Added:
    jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java   (with props)

Added: jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java?rev=279557&view=auto
==============================================================================
--- jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java (added)
+++ jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java Thu Sep  8 05:00:06 2005
@@ -0,0 +1,29 @@
+/* $Id$
+ *
+ * Copyright 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.commons.proxy.util;
+
+/**
+ * @author James Carman
+ * @version 1.0
+ */
+public abstract class AbstractEcho implements Echo
+{
+    public String echoBack( String message )
+    {
+        return message;
+    }
+}

Propchange: jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/sandbox/proxy/trunk/src/test/org/apache/commons/proxy/util/AbstractEcho.java
------------------------------------------------------------------------------
    svn:keywords = Id



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