blob: e1099824ebeca2b019aed84016a75244e9df5af9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi;
import java.util.List;
public interface Method extends TypeComponent , Locatable , Comparable {
public List allLineLocations() throws AbsentInformationException;
public List allLineLocations(String arg1, String arg2) throws AbsentInformationException;
public List arguments() throws AbsentInformationException;
public List argumentTypeNames();
public List argumentTypes() throws ClassNotLoadedException;
public byte[] bytecodes();
public boolean equals(Object arg1);
public int hashCode();
public boolean isAbstract();
public boolean isBridge();
public boolean isConstructor();
public boolean isNative();
public boolean isObsolete();
public boolean isStaticInitializer();
public boolean isSynchronized();
public boolean isVarArgs();
public Location locationOfCodeIndex(long arg1);
public List locationsOfLine(int arg1) throws AbsentInformationException;
public List locationsOfLine(String arg1, String arg2, int arg3) throws AbsentInformationException;
public Type returnType() throws ClassNotLoadedException;
public String returnTypeName();
public List variables() throws AbsentInformationException;
public List variablesByName(String arg1) throws AbsentInformationException;
}