133134135136137138139
if ( ci.childrenSet == null ) { ci.childrenSet = new LinkedHashSet<IEntry>(); } ci.childrenSet.add( childToAdd ); entryModified( new EntryAddedEvent( childToAdd.getBrowserConnection(), childToAdd ) ); }
172173174175176177178179
*/ public void runNotification( StudioProgressMonitor monitor ) { if ( createdEntry != null ) { EventRegistry.fireEntryUpdated( new EntryAddedEvent( browserConnection, createdEntry ), this ); } }
127128129130131132133134
*/ public void runNotification() { if ( createdEntry != null ) { EventRegistry.fireEntryUpdated( new EntryAddedEvent( browserConnection, createdEntry ), this ); } }
123124125126127128129