jdk/src/jdk.jdi/share/classes/com/sun/jdi/event/BreakpointEvent.java
changeset 45564 0149773a140c
parent 34894 3248b89d1921
equal deleted inserted replaced
45563:ece4ae6beba3 45564:0149773a140c
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package com.sun.jdi.event;
    26 package com.sun.jdi.event;
    27 
    27 
    28 import com.sun.jdi.*;
    28 import com.sun.jdi.VirtualMachine;
    29 
    29 import com.sun.jdi.request.BreakpointRequest;
    30 import java.util.List;
       
    31 
    30 
    32 /**
    31 /**
    33  * Notification of a breakpoint in the target VM.
    32  * Notification of a breakpoint in the target VM.
    34  * The breakpoint event
    33  *
    35  * is generated before the code at its location is executed.
    34  * The breakpoint event is generated before the code at its location
    36  * When a location
    35  * is executed. When a location is reached which satisfies a currently enabled
    37  * is reached which satisfies a currently enabled
    36  * {@link BreakpointRequest breakpoint request}, an {@link EventSet event set}
    38  * {@link com.sun.jdi.request.BreakpointRequest breakpoint request},
    37  * containing an instance of this class will be added to the VM's event queue.
    39  * an {@link EventSet event set}
       
    40  * containing an instance of this class will be added
       
    41  * to the VM's event queue.
       
    42  *
    38  *
    43  * @see EventQueue
    39  * @see EventQueue
    44  * @see VirtualMachine
    40  * @see VirtualMachine
    45  * @see com.sun.jdi.request.BreakpointRequest
    41  * @see BreakpointRequest
    46  *
    42  *
    47  * @author Robert Field
    43  * @author Robert Field
    48  * @since  1.3
    44  * @since  1.3
    49  */
    45  */
    50 public interface BreakpointEvent extends LocatableEvent {
    46 public interface BreakpointEvent extends LocatableEvent {