KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)WatchpointSpec.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.*;
38 import com.sun.jdi.request.*;
39
40 public abstract class WatchpointSpec extends EventRequestSpec {
41     final String JavaDoc fieldId;
42
43     WatchpointSpec(EventRequestSpecList specs,
44                    ReferenceTypeSpec refSpec, String JavaDoc fieldId) {
45         super(specs, refSpec);
46         this.fieldId = fieldId;
47 // if (!isJavaIdentifier(fieldId)) {
48
// throw new MalformedMemberNameException(fieldId);
49
// }
50
}
51
52     void notifySet(SpecListener listener, SpecEvent evt) {
53         listener.watchpointSet(evt);
54     }
55
56     void notifyDeferred(SpecListener listener, SpecEvent evt) {
57         listener.watchpointDeferred(evt);
58     }
59
60     void notifyResolved(SpecListener listener, SpecEvent evt) {
61         listener.watchpointResolved(evt);
62     }
63
64     void notifyDeleted(SpecListener listener, SpecEvent evt) {
65         listener.watchpointDeleted(evt);
66     }
67
68     void notifyError(SpecListener listener, SpecErrorEvent evt) {
69         listener.watchpointError(evt);
70     }
71
72     public int hashCode() {
73         return refSpec.hashCode() + fieldId.hashCode() +
74             getClass().hashCode();
75     }
76
77     public boolean equals(Object JavaDoc obj) {
78         if (obj instanceof WatchpointSpec) {
79             WatchpointSpec watchpoint = (WatchpointSpec)obj;
80
81             return fieldId.equals(watchpoint.fieldId) &&
82                    refSpec.equals(watchpoint.refSpec) &&
83                    getClass().equals(watchpoint.getClass());
84         } else {
85             return false;
86         }
87     }
88
89     public String JavaDoc errorMessageFor(Exception JavaDoc e) {
90         if (e instanceof NoSuchFieldException JavaDoc) {
91             return ("No field " + fieldId + " in " + refSpec);
92         } else {
93             return super.errorMessageFor(e);
94         }
95     }
96 }
97
98
99
Popular Tags