comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/Breakpoint.java @ 22255:e7643754d982

Truffle/Instrumentation: rename Instrument to ProbeInstrument to distinguish from another kind to be added.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Fri, 25 Sep 2015 14:58:35 -0700
parents dc83cc1f94f2
children 1348cc2e084e
comparison
equal deleted inserted replaced
22254:7ec5eef84ecf 22255:e7643754d982
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api.debug; 25 package com.oracle.truffle.api.debug;
26 26
27 import com.oracle.truffle.api.instrument.Instrument; 27 import java.io.IOException;
28
29 import javax.sound.midi.Instrument;
30
28 import com.oracle.truffle.api.instrument.Probe; 31 import com.oracle.truffle.api.instrument.Probe;
29 import com.oracle.truffle.api.source.Source; 32 import com.oracle.truffle.api.source.Source;
30 import java.io.IOException;
31 33
32 /** 34 /**
33 * Breakpoint in a {@link com.oracle.truffle.api.vm.TruffleVM} with 35 * Breakpoint in a {@link com.oracle.truffle.api.vm.TruffleVM} with
34 * {@link com.oracle.truffle.api.debug debugging turned on}. You can ask 36 * {@link com.oracle.truffle.api.debug debugging turned on}. You can ask
35 * {@link Debugger#setLineBreakpoint(int, com.oracle.truffle.api.source.LineLocation, boolean)} or 37 * {@link Debugger#setLineBreakpoint(int, com.oracle.truffle.api.source.LineLocation, boolean)} or