blob: ade83c6aa729df3f41794bd115a3c438278de302 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
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
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package com.sun.tools.example.debug.bdi;
27
28import com.sun.jdi.ReferenceType;
29import com.sun.jdi.request.*;
30
31import java.util.ArrayList;
32import java.util.List;
33import java.util.Iterator;
34
35public class ExceptionSpec extends EventRequestSpec {
36
37 boolean notifyCaught;
38 boolean notifyUncaught;
39
40 ExceptionSpec(EventRequestSpecList specs, ReferenceTypeSpec refSpec,
41 boolean notifyCaught, boolean notifyUncaught)
42 {
43 super(specs, refSpec);
44 this.notifyCaught = notifyCaught;
45 this.notifyUncaught = notifyUncaught;
46 }
47
48 void notifySet(SpecListener listener, SpecEvent evt) {
49 listener.exceptionInterceptSet(evt);
50 }
51
52 void notifyDeferred(SpecListener listener, SpecEvent evt) {
53 listener.exceptionInterceptDeferred(evt);
54 }
55
56 void notifyResolved(SpecListener listener, SpecEvent evt) {
57 listener.exceptionInterceptResolved(evt);
58 }
59
60 void notifyDeleted(SpecListener listener, SpecEvent evt) {
61 listener.exceptionInterceptDeleted(evt);
62 }
63
64 void notifyError(SpecListener listener, SpecErrorEvent evt) {
65 listener.exceptionInterceptError(evt);
66 }
67
68 /**
69 * The 'refType' is known to match.
70 */
71 void resolve(ReferenceType refType) {
72 setRequest(refType.virtualMachine().eventRequestManager()
73 .createExceptionRequest(refType,
74 notifyCaught, notifyUncaught));
75 }
76
77 public int hashCode() {
78 return refSpec.hashCode();
79 }
80
81 public boolean equals(Object obj) {
82 if (obj instanceof ExceptionSpec) {
83 ExceptionSpec es = (ExceptionSpec)obj;
84
85 return refSpec.equals(es.refSpec);
86 } else {
87 return false;
88 }
89 }
90
91 public String toString() {
92 StringBuffer buffer = new StringBuffer("exception catch ");
93 buffer.append(refSpec.toString());
94 return buffer.toString();
95 }
96}