diff --git a/briar-api/src/net/sf/briar/api/plugins/Plugin.java b/briar-api/src/net/sf/briar/api/plugins/Plugin.java index 2719736f69cc769d3b7704bd9f6a1eeb8df33683..0d91e824b15eda935f9909d48f39c55476810548 100644 --- a/briar-api/src/net/sf/briar/api/plugins/Plugin.java +++ b/briar-api/src/net/sf/briar/api/plugins/Plugin.java @@ -24,14 +24,14 @@ public interface Plugin { void stop() throws IOException; /** - * Returns true if the plugin's {@link Plugin#poll(Collection)} method - * should be called periodically to attempt to establish connections. + * Returns true if the plugin's {@link #poll(Collection)} method should be + * called periodically to attempt to establish connections. */ boolean shouldPoll(); /** * Returns the desired interval in milliseconds between calls to the - * plugin's {@link Plugin#poll(Collection)} method. + * plugin's {@link #poll(Collection)} method. */ long getPollingInterval(); diff --git a/briar-api/src/net/sf/briar/api/reliability/ReliabilityLayer.java b/briar-api/src/net/sf/briar/api/reliability/ReliabilityLayer.java index b997084aece1a47aee247e04edac8b5bd33c9bff..31a24ddcde9b8260211c97397aaa284969f6c98f 100644 --- a/briar-api/src/net/sf/briar/api/reliability/ReliabilityLayer.java +++ b/briar-api/src/net/sf/briar/api/reliability/ReliabilityLayer.java @@ -7,8 +7,9 @@ import java.io.OutputStream; * A protocol layer that attempts to ensure reliable, ordered delivery of data * across an unreliable lower layer. Interactions with the lower layer use the * buffer-oriented {@link ReadHandler} and {@link WriteHandler} interfaces; the - * reliability layer presents stream-oriented {@link java.io.InputStream} and - * {@link java.io.OutputStream} interfaces to higher layers. + * reliability layer presents stream-oriented + * {@link java.io.InputStream InputStream} and + * {@link java.io.OutputStream OutputStream} interfaces to higher layers. */ public interface ReliabilityLayer extends ReadHandler {