1 20 21 package org.apache.directory.ldapstudio.browser.core.events; 22 23 24 import org.apache.directory.ldapstudio.browser.core.model.IConnection; 25 import org.apache.directory.ldapstudio.browser.core.model.IEntry; 26 27 28 34 public abstract class EntryModificationEvent 35 { 36 37 38 protected IConnection connection; 39 40 41 protected IEntry modifiedEntry; 42 43 44 50 public EntryModificationEvent( IConnection connection, IEntry modifiedEntry ) 51 { 52 this.connection = connection; 53 this.modifiedEntry = modifiedEntry; 54 } 55 56 57 62 public IConnection getConnection() 63 { 64 return connection; 65 } 66 67 68 73 public IEntry getModifiedEntry() 74 { 75 return modifiedEntry; 76 } 77 78 } 79 | Popular Tags |