props.put(propName, value);
}
}
ObjAdminEvent oae = new ObjAdminEvent(this, ObjAdminEvent.UPDATE_DESTINATION);
ObjStore os = osDestCObj.getObjStore();
/*
* Set values in the event.
*/
oae.setLookupName(lookupName);
oae.setObjStore(os);
oae.setDestinationType(type);
oae.setObjProperties(props);
if (checkBox.isSelected())
oae.setReadOnly(true);
else
oae.setReadOnly(false);
oae.setOKAction(true);
fireAdminEventDispatched(oae);
}