# HG changeset patch # User dadubrow # Date 1265128249 21600 # Node ID bb5d67b9dbe60098a962e498839cb33881bf54c6 # Parent 73e89d44155889e5594ff6d1ac01cdf5f072a8a4 update javadoc diff -r 73e89d441558 -r bb5d67b9dbe6 connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IClientServiceSiteUI2.java --- a/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IClientServiceSiteUI2.java Tue Feb 02 09:33:03 2010 -0600 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IClientServiceSiteUI2.java Tue Feb 02 10:30:49 2010 -0600 @@ -24,7 +24,7 @@ /** * The user interface for picking or defining a connection to use that can be added to client service user interfaces. *

- * This variant allows selecting a "default connection" which will map to the currently selected default at runtime. + * This variant allows selecting a "current connection" which will map to the currently selected connection at runtime. *

* This requires that you use {@link IConnectionsManager#ensureConnection(String, IService)} * to map from a persisted connection identifier to an IConnection. Do not rely on "validating" @@ -60,7 +60,7 @@ * Do not expect to find this identifier in the {@link IConnectionsManager#getConnections()} list. * Instead, use {@link IConnectionsManager#ensureConnection(String, IService)} to find * the actual IConnection at runtime. - * @return the connection id, which may represent a "default". + * @return the connection id, which may represent a "current" connection. */ String getSelectedConnection(); @@ -83,11 +83,11 @@ *

    *
  1. If a connection is selected and it's compatible, return OK. *
  2. If no connection is selected, return ERROR. - *
  3. If selected connection is a default, but the current default is incompatible, + *
  4. If selected connection is current, but the current connection is incompatible, * return WARNING. * (Normally, the concrete connections are already filtered to show only - * compatible ones, but the default may be anything.) This is only a warning - * because the default connection can be changed externally to this UI, thus + * compatible ones, but the current may be anything.) This is only a warning + * because the current connection can be changed externally to this UI, thus * isn't a fatal error. *
*/