1 11 package com.sun.jdi; 12 13 14 import java.util.List ; 15 16 public interface ClassType extends ReferenceType { 17 public static final int INVOKE_SINGLE_THREADED = 1; 18 public List allInterfaces(); 19 public Method concreteMethodByName(String arg1, String arg2); 20 public List interfaces(); 21 public Value invokeMethod(ThreadReference arg1, Method arg2, List arg3, int arg4) throws InvalidTypeException, ClassNotLoadedException, IncompatibleThreadStateException, InvocationException; 22 public boolean isEnum(); 23 public ObjectReference newInstance(ThreadReference arg1, Method arg2, List arg3, int arg4) throws InvalidTypeException, ClassNotLoadedException, IncompatibleThreadStateException, InvocationException; 24 public void setValue(Field arg1, Value arg2) throws InvalidTypeException, ClassNotLoadedException; 25 public List subclasses(); 26 public ClassType superclass(); 27 } 28 | Popular Tags |