You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ja...@apache.org on 2007/06/20 13:11:25 UTC

svn commit: r549066 - in /incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice: ITestService.java TestComponent.java TestService.java

Author: janne
Date: Wed Jun 20 04:11:24 2007
New Revision: 549066

URL: http://svn.apache.org/viewvc?view=rev&rev=549066
Log:
fixed the license headers

Modified:
    incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/ITestService.java
    incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestComponent.java
    incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestService.java

Modified: incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/ITestService.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/ITestService.java?view=diff&rev=549066&r1=549065&r2=549066
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/ITestService.java (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/ITestService.java Wed Jun 20 04:11:24 2007
@@ -1,4 +1,19 @@
-// $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.wicket.guice;
 
 public interface ITestService

Modified: incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestComponent.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestComponent.java?view=diff&rev=549066&r1=549065&r2=549066
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestComponent.java (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestComponent.java Wed Jun 20 04:11:24 2007
@@ -1,4 +1,19 @@
-// $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.wicket.guice;
 
 import org.apache.wicket.Component;
@@ -12,7 +27,7 @@
 
 	@Inject
 	private ITestService testService;
-	
+
 	public TestComponent(String id)
 	{
 		super(id);

Modified: incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestService.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestService.java?view=diff&rev=549066&r1=549065&r2=549066
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestService.java (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-guice/src/test/java/org/apache/wicket/guice/TestService.java Wed Jun 20 04:11:24 2007
@@ -1,4 +1,19 @@
-// $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.wicket.guice;
 
 public class TestService implements ITestService