KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > NotInBootJar


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;
5
6 /**
7  * This is a mild hack, but the purpose of this class is indicate whether Terracotta code is available to a particular
8  * loader. As it's name inidicates, this class should NEVER be in the boot jar since classes in the boot jar are always
9  * available
10  */

11 public class NotInBootJar {
12
13   private NotInBootJar() {
14     //
15
}
16
17 }
18
Popular Tags