src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/Field.java
changeset 51997 9ce37fa2e179
parent 47216 71c04702a3d5
equal deleted inserted replaced
51996:84743156e780 51997:9ce37fa2e179
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    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 Symbol's
    59     describe fields which are themselves arrays (like Symbol's
    60     jbyte _body[1]).  */
    60     u1 _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 
    65   /** Get the type of this field */
    65   /** Get the type of this field */