This interface is not intended to be implemented by clients.
656657658659660661662663664665
protected void notifyAddElement(ICatalogElement entry) { if (isNotificationEnabled) { ICatalogEvent event = new CatalogEvent(this, entry, ICatalogEvent.ELEMENT_ADDED); notifyListeners(event); } }
664665666667668669670671672
} } protected void notifyChanged() { ICatalogEvent event = new CatalogEvent(this, null, ICatalogEvent.CHANGED); notifyListeners(event); }
684685686687688689690691692693
protected void notifyRemoveElement(ICatalogElement element) { if (isNotificationEnabled) { ICatalogEvent event = new CatalogEvent(this, element, ICatalogEvent.ELEMENT_REMOVED); notifyListeners(event); } }
650651652653654655656657658659
658659660661662663664665666
678679680681682683684685686687