01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package com.sun.jdi;
11:
12: import java.util.List;
13:
14: public interface Method extends TypeComponent, Locatable, Comparable {
15: public List allLineLocations() throws AbsentInformationException;
16:
17: public List allLineLocations(String arg1, String arg2)
18: throws AbsentInformationException;
19:
20: public List arguments() throws AbsentInformationException;
21:
22: public List argumentTypeNames();
23:
24: public List argumentTypes() throws ClassNotLoadedException;
25:
26: public byte[] bytecodes();
27:
28: public boolean equals(Object arg1);
29:
30: public int hashCode();
31:
32: public boolean isAbstract();
33:
34: public boolean isBridge();
35:
36: public boolean isConstructor();
37:
38: public boolean isNative();
39:
40: public boolean isObsolete();
41:
42: public boolean isStaticInitializer();
43:
44: public boolean isSynchronized();
45:
46: public boolean isVarArgs();
47:
48: public Location locationOfCodeIndex(long arg1);
49:
50: public List locationsOfLine(int arg1)
51: throws AbsentInformationException;
52:
53: public List locationsOfLine(String arg1, String arg2, int arg3)
54: throws AbsentInformationException;
55:
56: public Type returnType() throws ClassNotLoadedException;
57:
58: public String returnTypeName();
59:
60: public List variables() throws AbsentInformationException;
61:
62: public List variablesByName(String arg1)
63: throws AbsentInformationException;
64: }
|