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;
05:
06: /**
07: * This is a mild hack, but the purpose of this class is indicate whether Terracotta code is available to a particular
08: * loader. As it's name inidicates, this class should NEVER be in the boot jar since classes in the boot jar are always
09: * available
10: */
11: public class NotInBootJar {
12:
13: private NotInBootJar() {
14: //
15: }
16:
17: }
|