KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > tools > example > debug > bdi > ExceptionSpec


1 /*
2  * @(#)ExceptionSpec.java 1.9 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 /*
8  * Copyright (c) 1997-1999 by Sun Microsystems, Inc. All Rights Reserved.
9  *
10  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
11  * modify and redistribute this software in source and binary code form,
12  * provided that i) this copyright notice and license appear on all copies of
13  * the software; and ii) Licensee does not utilize the software in a manner
14  * which is disparaging to Sun.
15  *
16  * This software is provided "AS IS," without a warranty of any kind. ALL
17  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
18  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
19  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
20  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
21  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
22  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
23  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
24  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
25  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGES.
27  *
28  * This software is not designed or intended for use in on-line control of
29  * aircraft, air traffic, aircraft navigation or aircraft communications; or in
30  * the design, construction, operation or maintenance of any nuclear
31  * facility. Licensee represents and warrants that it will not use or
32  * redistribute the Software for such purposes.
33  */

34
35 package com.sun.tools.example.debug.bdi;
36
37 import com.sun.jdi.ReferenceType;
38 import com.sun.jdi.request.*;
39
40 import java.util.ArrayList JavaDoc;
41 import java.util.List JavaDoc;
42 import java.util.Iterator JavaDoc;
43
44 public class ExceptionSpec extends EventRequestSpec {
45
46     boolean notifyCaught;
47     boolean notifyUncaught;
48
49     ExceptionSpec(EventRequestSpecList specs, ReferenceTypeSpec refSpec,
50                   boolean notifyCaught, boolean notifyUncaught)
51     {
52         super(specs, refSpec);
53         this.notifyCaught = notifyCaught;
54         this.notifyUncaught = notifyUncaught;
55     }
56
57     void notifySet(SpecListener listener, SpecEvent evt) {
58         listener.exceptionInterceptSet(evt);
59     }
60
61     void notifyDeferred(SpecListener listener, SpecEvent evt) {
62         listener.exceptionInterceptDeferred(evt);
63     }
64
65     void notifyResolved(SpecListener listener, SpecEvent evt) {
66         listener.exceptionInterceptResolved(evt);
67     }
68
69     void notifyDeleted(SpecListener listener, SpecEvent evt) {
70         listener.exceptionInterceptDeleted(evt);
71     }
72
73     void notifyError(SpecListener listener, SpecErrorEvent evt) {
74         listener.exceptionInterceptError(evt);
75     }
76
77     /**
78      * The 'refType' is known to match.
79      */

80     void resolve(ReferenceType refType) {
81         setRequest(refType.virtualMachine().eventRequestManager()
82                    .createExceptionRequest(refType,
83                                            notifyCaught, notifyUncaught));
84     }
85
86     public int hashCode() {
87         return refSpec.hashCode();
88     }
89
90     public boolean equals(Object JavaDoc obj) {
91         if (obj instanceof ExceptionSpec) {
92             ExceptionSpec es = (ExceptionSpec)obj;
93
94             return refSpec.equals(es.refSpec);
95         } else {
96             return false;
97         }
98     }
99
100     public String JavaDoc toString() {
101         StringBuffer JavaDoc buffer = new StringBuffer JavaDoc("exception catch ");
102         buffer.append(refSpec.toString());
103         return buffer.toString();
104     }
105 }
106
Popular Tags