1 4 package com.tc.object.bytecode; 5 6 import com.tc.object.TCObject; 7 8 public interface Manageable { 9 public static final String CLASS = "com/tc/object/bytecode/Manageable"; 10 public static final String 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 |