KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > bytecode > Manageable


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.bytecode;
5
6 import com.tc.object.TCObject;
7
8 public interface Manageable {
9   public static final String JavaDoc CLASS = "com/tc/object/bytecode/Manageable";
10   public static final String JavaDoc TYPE = "L" + CLASS + ";";
11
12   public void __tc_managed(TCObject t);
13
14   public TCObject __tc_managed();
15   
16   public boolean __tc_isManaged();
17
18 }
19
Popular Tags