01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.loaders;
06:
07: /**
08: * An interface to add to existing classloaders to allow it to have a "name" associated with it
09: */
10: public interface NamedClassLoader {
11:
12: /**
13: * Get classloader name
14: * @return name
15: */
16: public String __tc_getClassLoaderName();
17:
18: /**
19: * Set classloader name
20: * @param name Name
21: */
22: public void __tc_setClassLoaderName(String name);
23:
24: }
|