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 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 } 19