Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2007-09-10 09:58:10 +0000
committerEike Stepper2007-09-10 09:58:10 +0000
commita448c447c3de30946233cd0592679165524ab0b1 (patch)
tree0e8e20a5d1127cdf550518e72ea94be5bc11c481 /plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java
parent2f2e597d55716836623029b36fe44c67a609b955 (diff)
downloadcdo-a448c447c3de30946233cd0592679165524ab0b1.tar.gz
cdo-a448c447c3de30946233cd0592679165524ab0b1.tar.xz
cdo-a448c447c3de30946233cd0592679165524ab0b1.zip
Changed comment line width from 80 to 120.
Diffstat (limited to 'plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java44
1 files changed, 17 insertions, 27 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java
index ca89fbc2e0..78a465bb82 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/IAcceptor.java
@@ -21,36 +21,29 @@ import org.eclipse.internal.net4j.Acceptor;
import java.util.List;
/**
- * Accepts incoming connection requests from
- * {@link ConnectorLocation#CLIENT client} {@link IConnector connectors} and
+ * Accepts incoming connection requests from {@link ConnectorLocation#CLIENT client} {@link IConnector connectors} and
* creates the appropriate {@link ConnectorLocation#SERVER server} connectors.
* <p>
- * Since the process of accepting connection requests is heavily dependent on
- * the implementation of the respective connectors the only public API is
- * introspection and notification.
+ * Since the process of accepting connection requests is heavily dependent on the implementation of the respective
+ * connectors the only public API is introspection and notification.
* <p>
- * This interface is <b>not</b> intended to be implemented by clients. Service
- * providers <b>must</b> extend the abstract {@link Acceptor} class.
+ * This interface is <b>not</b> intended to be implemented by clients. Service providers <b>must</b> extend the
+ * abstract {@link Acceptor} class.
* <p>
* <dt><b>Class Diagram:</b></dt>
- * <dd> <img src="doc-files/Acceptors.png" title="Diagram Acceptors" border="0"
- * usemap="#Acceptors.png"/></dd>
+ * <dd> <img src="doc-files/Acceptors.png" title="Diagram Acceptors" border="0" usemap="#Acceptors.png"/></dd>
* <p>
- * <MAP NAME="Acceptors.png"> <AREA SHAPE="RECT" COORDS="10,8,99,58"
- * HREF="IAcceptor.html"> <AREA SHAPE="RECT" COORDS="289,8,378,58"
- * HREF="IConnector.html"> </MAP>
+ * <MAP NAME="Acceptors.png"> <AREA SHAPE="RECT" COORDS="10,8,99,58" HREF="IAcceptor.html"> <AREA SHAPE="RECT"
+ * COORDS="289,8,378,58" HREF="IConnector.html"> </MAP>
* <p>
* <dt><b>Sequence Diagram:</b></dt>
- * <dd> <img src="doc-files/ConnectionProcess.jpg" title="Connection Process"
- * border="0" usemap="#ConnectionProcess.jpg"/></dd>
+ * <dd> <img src="doc-files/ConnectionProcess.jpg" title="Connection Process" border="0"
+ * usemap="#ConnectionProcess.jpg"/></dd>
* <p>
- * <MAP NAME="ConnectionProcess.jpg"> <AREA SHAPE="RECT"
- * COORDS="146,136,265,165" HREF="IConnector.html"> <AREA SHAPE="RECT"
- * COORDS="485,75,564,105" HREF="IAcceptor.html"> <AREA SHAPE="RECT"
- * COORDS="296,325,414,355" HREF="IConnector.html"> <AREA SHAPE="RECT"
- * COORDS="64,426,444,506" HREF="ConnectorState.html#CONNECTING"> <AREA
- * SHAPE="RECT" COORDS="64,516,444,596" HREF="ConnectorState.html#NEGOTIATING">
- * </MAP>
+ * <MAP NAME="ConnectionProcess.jpg"> <AREA SHAPE="RECT" COORDS="146,136,265,165" HREF="IConnector.html"> <AREA
+ * SHAPE="RECT" COORDS="485,75,564,105" HREF="IAcceptor.html"> <AREA SHAPE="RECT" COORDS="296,325,414,355"
+ * HREF="IConnector.html"> <AREA SHAPE="RECT" COORDS="64,426,444,506" HREF="ConnectorState.html#CONNECTING"> <AREA
+ * SHAPE="RECT" COORDS="64,516,444,596" HREF="ConnectorState.html#NEGOTIATING"> </MAP>
*
* @author Eike Stepper
* @since 0.8.0
@@ -58,20 +51,17 @@ import java.util.List;
public interface IAcceptor extends IContainer<IConnector>
{
/**
- * Returns the factory registry used by this acceptor to prepare newly
- * accepted connectors.
+ * Returns the factory registry used by this acceptor to prepare newly accepted connectors.
*/
public IRegistry<IFactoryKey, IFactory> getProtocolFactoryRegistry();
/**
- * Returns the post processors used by this acceptor to prepare newly accepted
- * connectors.
+ * Returns the post processors used by this acceptor to prepare newly accepted connectors.
*/
public List<IElementProcessor> getProtocolPostProcessors();
/**
- * Returns an array of the connectors that have been accepted by this acceptor
- * and not been closed since.
+ * Returns an array of the connectors that have been accepted by this acceptor and not been closed since.
*/
public IConnector[] getAcceptedConnectors();
}

Back to the top