*/
protected void rebuildTable() {
CallbackType callbackType = (CallbackType) callbackTypeCombo.getSelectedItem();
List methods = new ArrayList();
CallbackDescriptor descriptor = null;
CallbackMap callbackMap = getCallbackMap();
if (callbackMap != null && callbackType != null) {
descriptor = callbackMap.getCallbackDescriptor(callbackType.getType());
for (String callbackMethod : descriptor.getCallbackMethods()) {
methods.add(callbackMethod);
}
}