< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/InterfaceType.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

*** 42,51 **** --- 42,52 ---- * @author Gordon Hirsch * @author James McIlree * @since 1.3 */ public interface InterfaceType extends ReferenceType { + /** * Gets the interfaces directly extended by this interface. * The returned list contains only those interfaces this * interface has declared to be extended. *
*** 185,197 **** * @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachine#canBeModified()}. * * @since 1.8 */ default Value invokeMethod(ThreadReference thread, Method method, ! List<? extends Value> arguments, int options) throws InvalidTypeException, ! ClassNotLoadedException, ! IncompatibleThreadStateException, ! InvocationException { throw new UnsupportedOperationException(); } } --- 186,199 ---- * @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachine#canBeModified()}. * * @since 1.8 */ default Value invokeMethod(ThreadReference thread, Method method, ! List<? extends Value> arguments, int options) throws InvalidTypeException, ! ClassNotLoadedException, ! IncompatibleThreadStateException, ! InvocationException ! { throw new UnsupportedOperationException(); } }
< prev index next >