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.IAttribute; 26 import org.apache.directory.ldapstudio.browser.core.model.IEntry; 27 28 29 37 public class AttributesInitializedEvent extends EntryModificationEvent 38 { 39 40 45 public AttributesInitializedEvent( IEntry initializedEntry ) 46 { 47 super( initializedEntry.getConnection(), initializedEntry ); 48 } 49 50 51 54 public String toString() 55 { 56 return BrowserCoreMessages.bind( BrowserCoreMessages.event__dn_attributes_initialized, new String [] 57 { getModifiedEntry().getDn().toString() } ); 58 } 59 60 } 61 | Popular Tags |