1 11 package com.sun.jdi; 12 13 14 import java.util.List ; 15 16 public interface Method extends TypeComponent , Locatable , Comparable { 17 public List allLineLocations() throws AbsentInformationException; 18 public List allLineLocations(String arg1, String arg2) throws AbsentInformationException; 19 public List arguments() throws AbsentInformationException; 20 public List argumentTypeNames(); 21 public List argumentTypes() throws ClassNotLoadedException; 22 public byte[] bytecodes(); 23 public boolean equals(Object 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 locationsOfLine(int arg1) throws AbsentInformationException; 35 public List locationsOfLine(String arg1, String arg2, int arg3) throws AbsentInformationException; 36 public Type returnType() throws ClassNotLoadedException; 37 public String returnTypeName(); 38 public List variables() throws AbsentInformationException; 39 public List variablesByName(String arg1) throws AbsentInformationException; 40 } 41 | Popular Tags |