1 19 20 package org.netbeans.api.debugger.jpda; 21 22 import com.sun.jdi.AbsentInformationException; 23 24 import java.util.List ; 25 26 38 public interface JPDAClassType { 39 40 45 46 50 String getName(); 51 52 56 String getSourceName() throws AbsentInformationException; 57 58 62 ClassVariable classObject(); 63 64 69 List <Field> staticFields(); 70 71 } 72 | Popular Tags |