aboutsummaryrefslogtreecommitdiff
path: root/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java')
-rw-r--r--guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java b/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java
index 8f7ee5c76..8ba9564b2 100644
--- a/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java
+++ b/guava-testlib/src/com/google/common/collect/testing/TestSortedSetGenerator.java
@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package com.google.common.collect.testing;
import com.google.common.annotations.GwtCompatible;
+
import java.util.SortedSet;
/**
@@ -30,26 +30,26 @@ public interface TestSortedSetGenerator<E> extends TestSetGenerator<E> {
SortedSet<E> create(Object... elements);
/**
- * Returns an element less than the {@link #samples()} and less than {@link
- * #belowSamplesGreater()}.
+ * Returns an element less than the {@link #samples()} and less than
+ * {@link #belowSamplesGreater()}.
*/
E belowSamplesLesser();
/**
- * Returns an element less than the {@link #samples()} but greater than {@link
- * #belowSamplesLesser()}.
+ * Returns an element less than the {@link #samples()} but greater than
+ * {@link #belowSamplesLesser()}.
*/
E belowSamplesGreater();
/**
- * Returns an element greater than the {@link #samples()} but less than {@link
- * #aboveSamplesGreater()}.
+ * Returns an element greater than the {@link #samples()} but less than
+ * {@link #aboveSamplesGreater()}.
*/
E aboveSamplesLesser();
/**
- * Returns an element greater than the {@link #samples()} and greater than {@link
- * #aboveSamplesLesser()}.
+ * Returns an element greater than the {@link #samples()} and greater than
+ * {@link #aboveSamplesLesser()}.
*/
E aboveSamplesGreater();
}