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 } 13