connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IClientServiceSiteUI.java
changeset 728 a39d0ba41f81
parent 0 fb279309251b
equal deleted inserted replaced
727:e9804d5e613f 728:a39d0ba41f81
    20 
    20 
    21 import org.eclipse.swt.widgets.Composite;
    21 import org.eclipse.swt.widgets.Composite;
    22 
    22 
    23 /**
    23 /**
    24  * The user interface for picking a connection to use that can be added to client service user interfaces
    24  * The user interface for picking a connection to use that can be added to client service user interfaces
       
    25  * @noimplement
       
    26  * @noextend
       
    27  * @deprecated new code which wants to use default connections should use {@link IClientServiceSiteUI2}
    25  */
    28  */
    26 public interface IClientServiceSiteUI {
    29 public interface IClientServiceSiteUI {
    27 	
    30 	
    28 	/**
    31 	/**
    29 	 * A listener interface to allow client sites to be notified when a new connection is selected
    32 	 * A listener interface to allow client sites to be notified when a new connection is selected
    59 	/**
    62 	/**
    60 	 * Removes a listener from the client site UI
    63 	 * Removes a listener from the client site UI
    61 	 * @param listener IListener
    64 	 * @param listener IListener
    62 	 */
    65 	 */
    63 	void removeListener(IListener listener);
    66 	void removeListener(IListener listener);
    64 	
       
    65 }
    67 }