comparison agent/src/share/classes/sun/jvm/hotspot/types/Field.java @ 2177:3582bf76420e

6990754: Use native memory and reference counting to implement SymbolTable Summary: move symbols from permgen into C heap and reference count them Reviewed-by: never, acorn, jmasa, stefank
author coleenp
date Thu, 27 Jan 2011 16:11:27 -0800
parents c18cbe5936b8
children 1d1603768966
comparison
equal deleted inserted replaced
2176:27e4ea99855d 2177:3582bf76420e
54 ... 54 ...
55 } 55 }
56 </PRE> 56 </PRE>
57 57
58 FIXME: among other things, this interface is not sufficient to 58 FIXME: among other things, this interface is not sufficient to
59 describe fields which are themselves arrays (like symbolOop's 59 describe fields which are themselves arrays (like Symbol's
60 jbyte _body[1]). */ 60 jbyte _body[1]). */
61 public interface Field { 61 public interface Field {
62 /** Get the name of this field */ 62 /** Get the name of this field */
63 public String getName(); 63 public String getName();
64 64