diff options
Diffstat (limited to 'test/068-classloader/src')
-rw-r--r-- | test/068-classloader/src/Base.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/DoubledExtend.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/DoubledImplement.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/ICommon.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/InaccessibleBase.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/InaccessibleInterface.java | 16 | ||||
-rw-r--r-- | test/068-classloader/src/SimpleBase.java | 16 |
7 files changed, 105 insertions, 7 deletions
diff --git a/test/068-classloader/src/Base.java b/test/068-classloader/src/Base.java index b297a8a..4135f27 100644 --- a/test/068-classloader/src/Base.java +++ b/test/068-classloader/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. + */ /** * Common base class. diff --git a/test/068-classloader/src/DoubledExtend.java b/test/068-classloader/src/DoubledExtend.java index 5f8ebc2..990a511 100644 --- a/test/068-classloader/src/DoubledExtend.java +++ b/test/068-classloader/src/DoubledExtend.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. + */ /** * Doubled sub-class, form #1. diff --git a/test/068-classloader/src/DoubledImplement.java b/test/068-classloader/src/DoubledImplement.java index 64ec5e2..ea84303 100644 --- a/test/068-classloader/src/DoubledImplement.java +++ b/test/068-classloader/src/DoubledImplement.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. + */ /** * Doubled sub-class, form #1. diff --git a/test/068-classloader/src/ICommon.java b/test/068-classloader/src/ICommon.java index 35a98cc..34c4671 100644 --- a/test/068-classloader/src/ICommon.java +++ b/test/068-classloader/src/ICommon.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. + */ /** * Common interface. diff --git a/test/068-classloader/src/InaccessibleBase.java b/test/068-classloader/src/InaccessibleBase.java index 83af665..b3fd184 100644 --- a/test/068-classloader/src/InaccessibleBase.java +++ b/test/068-classloader/src/InaccessibleBase.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. + */ /** * Non-public base class, inaccessible from alternate class loader. diff --git a/test/068-classloader/src/InaccessibleInterface.java b/test/068-classloader/src/InaccessibleInterface.java index 7f52b80..5e2477d 100644 --- a/test/068-classloader/src/InaccessibleInterface.java +++ b/test/068-classloader/src/InaccessibleInterface.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. + */ /** * Non-public interface class, inaccessible from alternate class loader. diff --git a/test/068-classloader/src/SimpleBase.java b/test/068-classloader/src/SimpleBase.java index fd56db9..22098a6 100644 --- a/test/068-classloader/src/SimpleBase.java +++ b/test/068-classloader/src/SimpleBase.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. + */ /** * Simple, public base class. |