connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IConnectionFactory.java
changeset 1230 71146ed4b8a1
parent 1220 af71d0898edf
equal deleted inserted replaced
1223:10a0a5ba7be1 1230:71146ed4b8a1
    35 	 * Creates a composite with UI for editing settings, optionally initialized with initialSettings.<br>
    35 	 * Creates a composite with UI for editing settings, optionally initialized with initialSettings.<br>
    36 	 * Can provide optional errorReporter and optional listener. Assumes parent has GridLayout
    36 	 * Can provide optional errorReporter and optional listener. Assumes parent has GridLayout
    37 	 * @param parent Composite
    37 	 * @param parent Composite
    38 	 * @param errorReporter IValidationErrorReporter
    38 	 * @param errorReporter IValidationErrorReporter
    39 	 * @param initialSettings Map may be <code>null</code>
    39 	 * @param initialSettings Map may be <code>null</code>
    40 	 * @deprecated use IConnectionFactory2.createEditingUI(Composite, IValidationErrorReporter, Map, com.nokia.carbide.remoteconnections.interfaces.IConnectionFactory2.ISettingsChangedListener)
       
    41 	 */
    40 	 */
    42 	void createEditingUI(Composite parent, IValidationErrorReporter errorReporter, Map<String, String> initialSettings);
    41 	void createEditingUI(Composite parent, IValidationErrorReporter errorReporter, Map<String, String> initialSettings);
    43 
    42 
    44 	/**
    43 	/**
    45 	 * Returns the settings from the editing UI as name value pairs
    44 	 * Returns the settings from the editing UI as name value pairs
    46 	 * @return Map
    45 	 * @return Map
    47 	 * @deprecated use IConnectionFactory2.IEditingUI.getSettings() or IConnectionFactory2.getDefaultSettings()
       
    48 	 */
    46 	 */
    49 	Map<String, String> getSettingsFromUI();
    47 	Map<String, String> getSettingsFromUI();
    50 
    48 
    51 	/**
    49 	/**
    52 	 * Create a new connection from settings or default settings if <code>null</code>
    50 	 * Create a new connection from settings or default settings if <code>null</code>