1 /*
2  * Copyright (C) 2007 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /**
18  * Make sure private methods don't inherit.
19  */
20 public class Main {
main(String args[])21     public static void main(String args[]) {
22         PrivatePackage inst1 = new PrivatePackage();
23         PrivatePackage inst2 = new PrivatePackageSub();
24         PrivatePackageSub inst3 = new PrivatePackageSub();
25 
26         System.out.println("PrivatePackage --> " + inst1.getStr());
27         System.out.println("PrivatePackage --> " + inst2.getStr());
28         System.out.println("PrivatePackage --> " + inst3.getStr());
29         System.out.println("PrivatePackageSub --> " + inst3.getStrSub());
30 
31         inst1.stretchTest();
32     }
33 }
34 
35 class PrivatePackage {
getStr()36     public String getStr() {
37         return privGetStr();
38     }
39 
privGetStr()40     private String privGetStr() {
41         return "PrivatePackage!";
42     }
43 
stretchTest()44     public void stretchTest() {
45         PrivatePackage inst = new PrivatePackageSub();
46         System.out.println("PrivatePackage --> " + inst.getStr());
47         System.out.println("PrivatePackage --> " + inst.privGetStr());
48     }
49 }
50 
51 class PrivatePackageSub extends PrivatePackage {
getStrSub()52     public String getStrSub() {
53         return privGetStr();
54     }
55 
privGetStr()56     private String privGetStr() {
57         return "PrivatePackageSub!";
58     }
59 }
60