Inheritance diagram for StubComboBoxModel::
Public Methods | |
StubComboBoxModel (String intfId) | |
void | stubAdded (String intfId, String name, Object stub) |
void | stubRemoved (String intfId, String name) |
|
00022 { 00023 _id = intfId; 00024 StubRepository.instance().addStubListener(this); 00025 00026 if(getSize() > 0) 00027 setSelectedItem(getElementAt(0)); 00028 } |
|
Reimplemented from StubListener.
00031 { 00032 if(intfId.equals(_id) && (getIndexOf(name) == -1)) 00033 insertElementAt(name, 0); 00034 } |
|
Reimplemented from StubListener.
00037 { 00038 if(intfId.equals(_id)) removeElement(name); 00039 } |