package bluej.debugmgr.inspector;
| Plain old data type for field/value pairs.
|
| @author Davin McCall
|
public class FieldInfo
{
private String description;
private String value;
| Construct a FieldInfo object with the given field description (modifiers, type, name) and value.
|
public FieldInfo(String description, String value)
{
this.description = description;
this.value = value;
}
| Get the field description (modifiers, type, name).
|
public String getDescription()
{
return description;
}
| Get the field value representation.
| @return
|
public String getValue()
{
return value;
}
}
top,
use,
map,
class FieldInfo
. FieldInfo
. getDescription
. getValue
36 neLoCode
+ 6 LoComm