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