blob: 7215b0625f1d9c6601f1906f846dc3b9424e637c [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
public interface Field extends TypeComponent , Comparable {
public boolean equals(Object arg1);
public int hashCode();
public boolean isTransient();
public boolean isVolatile();
public Type type() throws ClassNotLoadedException;
public String typeName();
}