# HG changeset patch # User dadubrow # Date 1265128989 21600 # Node ID 90ae1a15f8672b2e6072a129f8184e03bc7f6e43 # Parent cb5e1f0959c91c10c7b13e4b68d7db12ac9a00f1 update javadoc diff -r cb5e1f0959c9 -r 90ae1a15f867 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 Mon Feb 01 15:51:52 2010 -0600 +++ b/connectivity/com.nokia.carbide.remoteConnections/src/com/nokia/carbide/remoteconnections/interfaces/IClientServiceSiteUI2.java Tue Feb 02 10:43:09 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. *
*/