Skip to content

Commit

Permalink
MONDRIAN: Fix javadoc.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 14153]
  • Loading branch information
julianhyde committed Mar 10, 2011
1 parent a9678d1 commit 9ef231c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/mondrian/calc/TupleCollections.java
Expand Up @@ -358,11 +358,12 @@ public int size() {
* Converts a {@link TupleIterable} into a {@link TupleList}.
*
* <p>If the iterable is already a list, returns the iterable. If it is not
* a list, the behavior depends on the {@code eager} parameter. With
* eager = true, creates a list and populates it with the contents of the
* a list, the behavior depends on the {@code eager} parameter. With eager =
* true, creates a list and populates it with the contents of the
* iterable. With eager = false, wraps in an adapter that implements the
* list interface and materializes to a list when the first list operation
* (e.g. {@link #get} or {@link #size}) is called.
* list interface and materializes to a list the first time that an
* operation that is in TupleList but not TupleIterable -- for example,
* {@link TupleList#get} or {@link TupleList#size} -- is called.
*
* @param tupleIterable Iterable
* @param eager Whether to convert into a list now, as opposed to on first
Expand Down

0 comments on commit 9ef231c

Please sign in to comment.