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