KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jdi > ReferenceType


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package com.sun.jdi;
12
13
14 import java.util.List JavaDoc;
15 import java.util.Map JavaDoc;
16
17 public interface ReferenceType extends Type , Comparable JavaDoc , Accessible {
18     public List JavaDoc allFields();
19     public List JavaDoc allLineLocations() throws AbsentInformationException;
20     public List JavaDoc allLineLocations(String JavaDoc arg1, String JavaDoc arg2) throws AbsentInformationException;
21     public List JavaDoc allMethods();
22     public List JavaDoc availableStrata();
23     public ClassLoaderReference classLoader();
24     public ClassObjectReference classObject();
25     public String JavaDoc defaultStratum();
26     public boolean equals(Object JavaDoc arg1);
27     public boolean failedToInitialize();
28     public Field fieldByName(String JavaDoc arg1);
29     public List JavaDoc fields();
30     public String JavaDoc genericSignature();
31     public Value getValue(Field arg1);
32     public Map JavaDoc getValues(List JavaDoc arg1);
33     public int hashCode();
34     public boolean isAbstract();
35     public boolean isFinal();
36     public boolean isInitialized();
37     public boolean isPrepared();
38     public boolean isStatic();
39     public boolean isVerified();
40     public List JavaDoc locationsOfLine(int arg1) throws AbsentInformationException;
41     public List JavaDoc locationsOfLine(String JavaDoc arg1, String JavaDoc arg2, int arg3) throws AbsentInformationException;
42     public List JavaDoc methods();
43     public List JavaDoc methodsByName(String JavaDoc arg1);
44     public List JavaDoc methodsByName(String JavaDoc arg1, String JavaDoc arg2);
45     public String JavaDoc name();
46     public List JavaDoc nestedTypes();
47     public String JavaDoc sourceDebugExtension() throws AbsentInformationException;
48     public String JavaDoc sourceName() throws AbsentInformationException;
49     public List JavaDoc sourceNames(String JavaDoc arg1) throws AbsentInformationException;
50     public List JavaDoc sourcePaths(String JavaDoc arg1) throws AbsentInformationException;
51     public List JavaDoc visibleFields();
52     public List JavaDoc visibleMethods();
53     public List JavaDoc instances(long arg1);
54     public int majorVersion();
55     public int minorVersion();
56     public int constantPoolCount();
57     public byte[] constantPool();
58 }
59
Popular Tags