hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/InstanceKlass.java
changeset 13201 69f157caabcc
parent 12772 d317e5e08194
child 13728 882756847a04
equal deleted inserted replaced
13200:7b506e7b406e 13201:69f157caabcc
   340   public ConstantPool getConstants()        { return (ConstantPool) constants.getValue(this); }
   340   public ConstantPool getConstants()        { return (ConstantPool) constants.getValue(this); }
   341   public Oop       getClassLoader()         { return                classLoader.getValue(this); }
   341   public Oop       getClassLoader()         { return                classLoader.getValue(this); }
   342   public Oop       getProtectionDomain()    { return                protectionDomain.getValue(this); }
   342   public Oop       getProtectionDomain()    { return                protectionDomain.getValue(this); }
   343   public ObjArray  getSigners()             { return (ObjArray)     signers.getValue(this); }
   343   public ObjArray  getSigners()             { return (ObjArray)     signers.getValue(this); }
   344   public Symbol    getSourceFileName()      { return getSymbol(sourceFileName); }
   344   public Symbol    getSourceFileName()      { return getSymbol(sourceFileName); }
   345   public Symbol    getSourceDebugExtension(){ return getSymbol(sourceDebugExtension); }
   345   public String    getSourceDebugExtension(){ return                CStringUtilities.getString(sourceDebugExtension.getValue(getHandle())); }
   346   public TypeArray getInnerClasses()        { return (TypeArray)    innerClasses.getValue(this); }
   346   public TypeArray getInnerClasses()        { return (TypeArray)    innerClasses.getValue(this); }
   347   public long      getNonstaticFieldSize()  { return                nonstaticFieldSize.getValue(this); }
   347   public long      getNonstaticFieldSize()  { return                nonstaticFieldSize.getValue(this); }
   348   public long      getStaticOopFieldCount() { return                staticOopFieldCount.getValue(this); }
   348   public long      getStaticOopFieldCount() { return                staticOopFieldCount.getValue(this); }
   349   public long      getNonstaticOopMapSize() { return                nonstaticOopMapSize.getValue(this); }
   349   public long      getNonstaticOopMapSize() { return                nonstaticOopMapSize.getValue(this); }
   350   public boolean   getIsMarkedDependent()   { return                isMarkedDependent.getValue(this) != 0; }
   350   public boolean   getIsMarkedDependent()   { return                isMarkedDependent.getValue(this) != 0; }