* post an structure change event.
* @param type The type of the event.
*/
protected void postStructureChangedEvent(int type) {
if ((structListener != null) && (getResourceReference() != null)) {
StructureChangedEvent evt =
new StructureChangedEvent(getResourceReference(), type);
postEvent(evt);
}
}