KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > loaders > NamedClassLoader


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.loaders;
5
6 /**
7  * An interface to add to existing classloaders to allow it to have a "name" associated with it
8  */

9 public interface NamedClassLoader {
10
11   public static final String JavaDoc CLASS = "com/tc/object/loaders/NamedClassLoader";
12   public static final String JavaDoc TYPE = "L" + CLASS + ";";
13
14   public String JavaDoc __tc_getClassLoaderName();
15
16   public void __tc_setClassLoaderName(String JavaDoc name);
17
18 }
19
Popular Tags