1 20 21 package org.apache.directory.ldapstudio.browser.core.events; 22 23 24 import org.apache.directory.ldapstudio.browser.core.BrowserCoreMessages; 25 import org.apache.directory.ldapstudio.browser.core.model.IEntry; 26 27 28 36 public class ChildrenInitializedEvent extends EntryModificationEvent 37 { 38 39 44 public ChildrenInitializedEvent( IEntry initializedEntry ) 45 { 46 super( initializedEntry.getConnection(), initializedEntry ); 47 } 48 49 50 53 public String toString() 54 { 55 return BrowserCoreMessages.bind( BrowserCoreMessages.event__dn_children_initialized, new String [] 56 { getModifiedEntry().getDn().toString() } ); 57 } 58 59 } 60 | Popular Tags |