package bluej.debugmgr;
import bluej.debugger.gentype.JavaType;
| A named value, such as an object on the object bench or a local variable
| in the code page.
|
| @author Davin McCall
| @version $Id: NamedValue.java 6215 2009-03-30 13:28:25Z polle $
|
public interface NamedValue
{
| Get the name of the named value.
|
public String getName();
| Check whether the value has been initialized. This is used to
| distinguish established values from values which are expected to be
| initialized by the user. If it returns false, the value is not yet
| available.
|
public boolean isInitialized();
| Check whether the value of this named value can be modified.
|
public boolean isFinal();
| Get the nominated type of this value.
|
public JavaType getGenType();
}
top,
use,
map,
interface NamedValue
. getName
. isInitialized
. isFinal
. getGenType
22 neLoCode
+ 11 LoComm