jdk/src/jdk.jdi/share/classes/com/sun/jdi/request/ClassPrepareRequest.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.request;
    26 package com.sun.jdi.request;
    27 
    27 
    28 import com.sun.jdi.*;
    28 import com.sun.jdi.ReferenceType;
       
    29 import com.sun.jdi.VirtualMachine;
       
    30 import com.sun.jdi.event.ClassPrepareEvent;
       
    31 import com.sun.jdi.event.EventQueue;
       
    32 import com.sun.jdi.event.EventSet;
    29 
    33 
    30 /**
    34 /**
    31  * Request for notification when a class is prepared in the target VM.
    35  * Request for notification when a class is prepared in the target VM.
    32  * When an enabled ClassPrepareRequest is satisfied, an
    36  * When an enabled ClassPrepareRequest is satisfied, an
    33  * {@link com.sun.jdi.event.EventSet event set} containing a
    37  * {@link EventSet event set} containing a
    34  * {@link com.sun.jdi.event.ClassPrepareEvent ClassPrepareEvent}
    38  * {@link ClassPrepareEvent ClassPrepareEvent}
    35  * will be placed on the
    39  * will be placed on the
    36  * {@link com.sun.jdi.event.EventQueue EventQueue}.
    40  * {@link EventQueue EventQueue}.
    37  * The collection of existing ClassPrepareRequests is
    41  * The collection of existing ClassPrepareRequests is
    38  * managed by the {@link EventRequestManager}
    42  * managed by the {@link EventRequestManager}
    39  * <p>
    43  * <p>
    40  * Class preparation is defined in the Java Virtual Machine
    44  * Class preparation is defined in the Java Virtual Machine
    41  * Specification.
    45  * Specification.
    42  *
    46  *
    43  * @see com.sun.jdi.event.ClassPrepareEvent
    47  * @see ClassPrepareEvent
    44  * @see com.sun.jdi.event.EventQueue
    48  * @see EventQueue
    45  * @see EventRequestManager
    49  * @see EventRequestManager
    46  *
    50  *
    47  * @author Robert Field
    51  * @author Robert Field
    48  * @since  1.3
    52  * @since  1.3
    49  */
    53  */