Lines Matching refs:PublicClass
17 import other.PublicClass;
227 * This is a sub-class of other.PublicClass, which should be allowed to access
228 * the various protected fields declared by other.PublicClass and its parent
231 class SubClass extends PublicClass {
536 PublicClass otherPkgInst = new PublicClass();
555 validInst = new PublicClass();
556 fields = PublicClass.class.getDeclaredFields();
558 methods = PublicClass.class.getDeclaredMethods();
562 validInst = new PublicClass();
563 fields = PublicClass.class.getSuperclass().getDeclaredFields();
565 methods = PublicClass.class.getSuperclass().getDeclaredMethods();