01: /**
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */package com.tc.common.proxy.subpkg;
04:
05: /**
06: * A public way to get at instances of PackagePrivateClass from outside the com.tc.common.proxy.subpkg package
07: */
08: public class Factory {
09:
10: public static TestInterface getInstance() {
11: return new PackagePrivateClass();
12: }
13: }
|