public interface CustomFilterEditor
CustomEditor
Modifier and Type | Method and Description |
---|---|
void |
display()
Called to refresh whatever you've got in state to the screen.
|
java.awt.Component |
getComponent()
Your actual editor component, usually 'this'
|
void |
getStateParameters(ParameterList state)
called to give us a chance to fill the editor prop key list with any props we
define.
|
java.lang.String |
isEditorValid()
When this method is called on your class, validate your editor's contents, and if there
is an error, return it as a String object so that the Editor can dispaly it and prevent
save/continue.
|
void |
save()
When the user wants to save the current editor state back to the underlying object.
|
void |
setFilterInfo(TestCaseInfo tc,
TestNodeInfo ni,
ParameterList params)
This method is called on you whenever your sublcass needs to be
set for this object.
|
java.awt.Component getComponent()
java.lang.String isEditorValid()
void display()
void getStateParameters(ParameterList state)
state
- - add the key as key and the human description as the value to this listvoid save()
void setFilterInfo(TestCaseInfo tc, TestNodeInfo ni, ParameterList params)
tc
- - this is the specific TestCaseInfo that your Filter is forni
- (opt) - this is the specific TestNodeInfo that your Filter is forparams
- - this is the set of Parameters that you need to edit/modifyCopyright © 1998-2014 CA, Inc. All Rights Reserved.