KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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
16 public interface Method extends TypeComponent , Locatable , Comparable JavaDoc {
17     public List JavaDoc allLineLocations() throws AbsentInformationException;
18     public List JavaDoc allLineLocations(String JavaDoc arg1, String JavaDoc arg2) throws AbsentInformationException;
19     public List JavaDoc arguments() throws AbsentInformationException;
20     public List JavaDoc argumentTypeNames();
21     public List JavaDoc argumentTypes() throws ClassNotLoadedException;
22     public byte[] bytecodes();
23     public boolean equals(Object JavaDoc arg1);
24     public int hashCode();
25     public boolean isAbstract();
26     public boolean isBridge();
27     public boolean isConstructor();
28     public boolean isNative();
29     public boolean isObsolete();
30     public boolean isStaticInitializer();
31     public boolean isSynchronized();
32     public boolean isVarArgs();
33     public Location locationOfCodeIndex(long arg1);
34     public List JavaDoc locationsOfLine(int arg1) throws AbsentInformationException;
35     public List JavaDoc locationsOfLine(String JavaDoc arg1, String JavaDoc arg2, int arg3) throws AbsentInformationException;
36     public Type returnType() throws ClassNotLoadedException;
37     public String JavaDoc returnTypeName();
38     public List JavaDoc variables() throws AbsentInformationException;
39     public List JavaDoc variablesByName(String JavaDoc arg1) throws AbsentInformationException;
40 }
41
Popular Tags