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: */
04: package com.tc.object.loaders;
05:
06: /**
07: * An interface to add to existing classloaders to allow it to have a "name" associated with it
08: */
09: public interface NamedClassLoader {
10:
11: public static final String CLASS = "com/tc/object/loaders/NamedClassLoader";
12: public static final String TYPE = "L" + CLASS + ";";
13:
14: public String __tc_getClassLoaderName();
15:
16: public void __tc_setClassLoaderName(String name);
17:
18: }
|