summaryrefslogtreecommitdiffstats
path: root/test/066-mismatched-super
diff options
context:
space:
mode:
Diffstat (limited to 'test/066-mismatched-super')
-rw-r--r--test/066-mismatched-super/src/Base.java16
-rw-r--r--test/066-mismatched-super/src/Defs.java16
-rw-r--r--test/066-mismatched-super/src2/Defs.java16
3 files changed, 45 insertions, 3 deletions
diff --git a/test/066-mismatched-super/src/Base.java b/test/066-mismatched-super/src/Base.java
index 6180c8bbfa..cf6c591ff9 100644
--- a/test/066-mismatched-super/src/Base.java
+++ b/test/066-mismatched-super/src/Base.java
@@ -1,4 +1,18 @@
-// Copyright 2008 The Android Open Source Project
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * 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.
+ */
public class Base extends Defs {
// no need to implement func(), provided by abstract class
diff --git a/test/066-mismatched-super/src/Defs.java b/test/066-mismatched-super/src/Defs.java
index e7eb8a14a7..864524088d 100644
--- a/test/066-mismatched-super/src/Defs.java
+++ b/test/066-mismatched-super/src/Defs.java
@@ -1,4 +1,18 @@
-// Copyright 2008 The Android Open Source Project
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * 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.
+ */
public abstract class Defs {
public void func() {
diff --git a/test/066-mismatched-super/src2/Defs.java b/test/066-mismatched-super/src2/Defs.java
index bab92d8424..b81319e03c 100644
--- a/test/066-mismatched-super/src2/Defs.java
+++ b/test/066-mismatched-super/src2/Defs.java
@@ -1,4 +1,18 @@
-// Copyright 2008 The Android Open Source Project
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * 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.
+ */
public interface Defs {
public void func();