You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2006/04/11 22:56:38 UTC

svn commit: r393308 - /beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java

Author: ekoneil
Date: Tue Apr 11 13:56:36 2006
New Revision: 393308

URL: http://svn.apache.org/viewcvs?rev=393308&view=rev
Log:
Add license / copyright header.

BB: self
Test: NetUI pass


Modified:
    beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java

Modified: beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java?rev=393308&r1=393307&r2=393308&view=diff
==============================================================================
--- beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java (original)
+++ beehive/trunk/netui/test/webapps/drt/src/pageFlowCore/lifecycle/TestControlImpl.java Tue Apr 11 13:56:36 2006
@@ -1,25 +1,30 @@
+/*
+ * Copyright 2006 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.
+ *
+ * $Header:$
+ */
 package pageFlowCore.lifecycle; 
 
-
-
-/**
- * @jcs:jc-jar label="TestControl"
- * @editor-info:code-gen control-interface="true"
- */
 @org.apache.beehive.controls.api.bean.ControlImplementation(isTransient=true)
 public class TestControlImpl implements TestControl
 { 
-    /**
-     * @common:operation
-     */
     public String sayHello()
     {
         return "hello there";
     }
 
-    /**
-     * @common:operation
-     */
     public String sayBye()
     {
         return "bye";