| org.cougaar.planning.ldm.plan.AlertParameter
All known Subclasses: org.cougaar.planning.ldm.plan.AlertParameterImpl,
AlertParameter | public interface AlertParameter extends java.io.Serializable(Code) | | AlertParameter interface
BOZO - Use of AlertParameter is not clearly defined. Object will probably change
when we attempt to actually use it.
|
Method Summary | |
String | getDescription() A description of the AlertParameter for display in the UI to tell
a user what and why he is seeing it. | Object | getParameter() An object whose contents would be meaningful to a UI user who must
respond to the Alert that this AlertParameter is part of. | Object | getResponse() The answer to the question posed by this AlertParameter. | boolean | isEditable() Should this parameter be editable. | boolean | isVisible() Should this parameter be visible. |
getDescription | String getDescription()(Code) | | A description of the AlertParameter for display in the UI to tell
a user what and why he is seeing it.
|
getParameter | Object getParameter()(Code) | | An object whose contents would be meaningful to a UI user who must
respond to the Alert that this AlertParameter is part of.
|
getResponse | Object getResponse()(Code) | | The answer to the question posed by this AlertParameter. This method
would be used by the UI to fill in the user's response, if any.
|
isEditable | boolean isEditable()(Code) | | Should this parameter be editable. Uneditable parameters simply
supply additional information to the operator, but the operator
can't change them.
|
isVisible | boolean isVisible()(Code) | | Should this parameter be visible. Invisible parameters simply
carry information needed to handle the alert when it is
acknowledged.
|
|
|