Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / debugger / spec / ReferenceTypeSpec.java
1 package jde.debugger.spec;
2
3 import com.sun.jdi.*;
4 import jde.debugger.Protocol;
5
6 /**
7  * ReferenceTypeSpec.java
8  *
9  *
10  * Created: Mon Jul 19 13:19:23 1999
11  *
12  * Copyright (c) 2000, 2001, 2003    Paul Kinnucan
13  *
14  *  
15  * @author Amit Kumar
16  * @since 0.1
17  * @version $Revision: 1.2 $
18  */
19
20 public interface ReferenceTypeSpec extends Protocol {
21
22     /**
23      * @return true if the ref type matches this spec
24      */
25   public boolean matches(ReferenceType refType);
26
27 }
28
29 /*
30  * $Log: ReferenceTypeSpec.java,v $
31  * Revision 1.2  2003/01/15 06:06:15  paulk
32  * Petter Mahlen's changes.
33  *
34  */
35
36 // End of ReferenceTypeSpec.java