|
Java Debug Interface | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface Connector.IntegerArgument
Specification for and value of a Connector argument, whose value is an integer. Integer values are represented by their corresponding strings.
Method Summary | |
---|---|
int |
intValue()
Return the value of the argument as a int. |
boolean |
isValid(int value)
Performs basic sanity check of argument. |
boolean |
isValid(String value)
Performs basic sanity check of argument. |
int |
max()
The upper bound for the value. |
int |
min()
The lower bound for the value. |
void |
setValue(int value)
Sets the value of the argument. |
String |
stringValueOf(int value)
Return the string representation of the value
parameter. |
Methods inherited from interface com.sun.jdi.connect.Connector.Argument |
---|
description, label, mustSpecify, name, setValue, value |
Method Detail |
---|
void setValue(int value)
isValid(int)
before setting it; invalid values will throw an exception
when the connection is established - for example,
on LaunchingConnector.launch(java.util.Map)
boolean isValid(String value)
isValid
in interface Connector.Argument
true
if value represents an int that is
min()
<= value <= max()
boolean isValid(int value)
true
if
min()
<= value <= max()
String stringValueOf(int value)
value
parameter.
Does not set or examine the current value of this
instance.
int intValue()
isValid(String)
should be called on
Connector.Argument.value()
to check its validity. If it is invalid
the int returned by this method is undefined.
int max()
int min()
|
Java Debug Interface | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |