Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-05-11 07:03:28 +0000
committerEike Stepper2011-05-11 07:03:28 +0000
commit057648203be746491fcca57f5760039458656b5c (patch)
tree0b2226ecb87b247e41cfdac7c19ba5cdf10770e7 /plugins/org.eclipse.net4j
parent6be3aa327a568f7fa99d862f33b6b12db0e321d2 (diff)
downloadcdo-057648203be746491fcca57f5760039458656b5c.tar.gz
cdo-057648203be746491fcca57f5760039458656b5c.tar.xz
cdo-057648203be746491fcca57f5760039458656b5c.zip
fixed M7 javadoc warnings
Diffstat (limited to 'plugins/org.eclipse.net4j')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/net4j/connector/IConnector.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/connector/IConnector.java b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/connector/IConnector.java
index cd0155d48a..1e57a613dd 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/connector/IConnector.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/connector/IConnector.java
@@ -10,19 +10,19 @@
*/
package org.eclipse.net4j.connector;
-import org.eclipse.net4j.ILocationAware;
import org.eclipse.net4j.buffer.IBuffer;
import org.eclipse.net4j.channel.IChannel;
import org.eclipse.net4j.channel.IChannelMultiplexer;
import org.eclipse.net4j.util.collection.Closeable;
import org.eclipse.net4j.util.security.IUserAware;
+import org.eclipse.net4j.ILocationAware.Location;
/**
* One endpoint of a physical connection of arbitrary nature between two communicating parties. A {@link IConnector}
- * encapsulates the process of establishing and closing such connections and has a {@link ILocationAware.Location
- * location} of {@link ILocationAware.Location#CLIENT CLIENT} or {@link ILocationAware.Location#SERVER SERVER} with
- * respect to this process. Once a connection is established either party can use its connector to open multiple
- * {@link IChannel}s to asynchronously exchange {@link IBuffer}s.
+ * encapsulates the process of establishing and closing such connections and has a {@link Location location} of
+ * {@link Location#CLIENT CLIENT} or {@link Location#SERVER SERVER} with respect to this process. Once a connection is
+ * established either party can use its connector to open multiple {@link IChannel}s to asynchronously exchange
+ * {@link IBuffer}s.
* <p>
* This interface is <b>not</b> intended to be implemented by clients. Providers of connectors for new physical
* connection types have to implement org.eclipse.internal.net4j.connector.InternalConnector.

Back to the top