jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame^] | 1 | // Copyright 2006 The Android Open Source Project |
2 | |||||
3 | import otherpackage.PublicAccess; | ||||
4 | |||||
5 | public class Main { | ||||
6 | public static void main(String[] args) { | ||||
7 | System.out.println("access test"); | ||||
8 | |||||
9 | PublicAccess pa = new PublicAccess(); | ||||
10 | pa.main(); | ||||
11 | } | ||||
12 | } |