Skip to content

Commit

Permalink
MONDRIAN: Fix javadoc warnings.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 10803]
  • Loading branch information
julianhyde committed Apr 2, 2008
1 parent b8c2392 commit d24bb4e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/mondrian/olap/CacheControl.java
Expand Up @@ -15,8 +15,8 @@

/**
* API for controlling the contents of the cell cache and the member cache.
* A {@link#CellRegion} denotes a portion of the cell cache, and a
* {@link#MemberSet} denotes a portion of the member cache. Both caches can be
* A {@link CellRegion} denotes a portion of the cell cache, and a
* {@link MemberSet} denotes a portion of the member cache. Both caches can be
* flushed, and the member cache can be edited.
*
* <p>To create an instance of this interface, use
Expand Down
21 changes: 19 additions & 2 deletions src/main/mondrian/rolap/CacheControlImpl.java
Expand Up @@ -927,8 +927,8 @@ public void visit(CrossjoinCellRegion region) {
// ~ member cache control implementation ----------------------------------

/**
* Implementation-specific extensions to the {@link MemberEditCommand}
* interface.
* Implementation-specific extensions to the
* {@link mondrian.olap.CacheControl.MemberEditCommand} interface.
*/
interface MemberEditCommandPlus extends MemberEditCommand {
/**
Expand All @@ -942,9 +942,26 @@ interface MemberEditCommandPlus extends MemberEditCommand {
void execute(final List<CellRegion> cellRegionList);
}

/**
* Implementation-specific extensions to the
* {@link mondrian.olap.CacheControl.MemberSet} interface.
*/
interface MemberSetPlus extends MemberSet {
/**
* Accepts a visitor.
*
* @param visitor Visitor
*/
void accept(MemberSetVisitor visitor);

/**
* Filters this member set, returning a member set containing all
* members at a given Level. When applicable, returns this member set
* unchanged.
*
* @param level Level
* @return Member set with members not at the given level removed
*/
MemberSetPlus filter(RolapLevel level);
}

Expand Down

0 comments on commit d24bb4e

Please sign in to comment.