Skip to content

Commit

Permalink
Put tendiwa-version tags in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
gvlasov committed Jul 13, 2015
1 parent 0e2bce1 commit 36210b1
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
*
* @param <T> Type of elements of the collection.
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public interface ReadOnlyCollection<T> extends Iterable<T> {
/**
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/tendiwa/rocollections/ReadOnlyList.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
* A list with only accessors and no mutators.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public interface ReadOnlyList<T> extends ReadOnlyCollection<T> {
/**
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/tendiwa/rocollections/ReadOnlySet.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
*
* @param <T> Type of elements of the set.
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public interface ReadOnlySet<T> extends ReadOnlyCollection<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
* Wraps a {@link java.util.Collection} to expose only its accessors.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
class WrappingReadOnlyCollection<T> implements ReadOnlyCollection<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
* Wraps a {@link java.util.List} to expose only its accessors.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public class WrappingReadOnlyList<T> implements ReadOnlyList<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
*
* @param <T> Type of elements of the collection.
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
@SuppressWarnings("unused")
public class WrappingReadOnlySet<T> implements ReadOnlySet<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
* A base test for {@link ReadOnlyCollection}s.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public abstract class AbstractReadOnlyCollectionTest<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
* A base test for {@link ReadOnlyList}s.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
public abstract class AbstractReadOnlyListTest<T> extends
AbstractReadOnlyCollectionTest<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
* Base tests for ReadOnlyCollections.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
*/
package org.tendiwa.rocollections.test.base;
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
* passed into that static method.
*
* @author Georgy Vlasov ([email protected])
* @version $Id$
* @version $tendiwa-version$
* @since 0.1
*/
@RunWith(Enclosed.class)
public final class WrappingReadOnlyListTest {
Expand Down

0 comments on commit 36210b1

Please sign in to comment.