Skip to content

Commit

Permalink
MONDRIAN: Fix warnings.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 2217]
  • Loading branch information
julianhyde committed Jun 23, 2004
1 parent 04bfb0e commit d2f18dc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 6 additions & 7 deletions src/main/mondrian/rolap/MeasureMemberSource.java
Expand Up @@ -3,7 +3,7 @@
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// (C) Copyright 2001-2002 Kana Software, Inc. and others.
// (C) Copyright 2001-2004 Kana Software, Inc. and others.
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
Expand All @@ -12,14 +12,13 @@

package mondrian.rolap;

import mondrian.rolap.sql.SqlQuery;
import mondrian.olap.MondrianDef;

/**
* A <code>MeasureMemberSource</code> implements the {@link MemberReader}
* interface for the special Measures dimension. The {@link #qualifyQuery}
* method usually adds filters, but this implementation adds columns to the
* select list.
* interface for the special Measures dimension.
*
* <p>Usually when a member is added to the context, the resulting SQL
* statement has extra filters in its WHERE clause, but for members from this
* source, but this implementation columns are added to the SELECT list.
*
* @author jhyde
* @since 21 December, 2001
Expand Down
3 changes: 2 additions & 1 deletion src/main/mondrian/rolap/MemberReader.java
Expand Up @@ -41,7 +41,8 @@ interface MemberReader extends MemberSource
* Returns all of the members in <code>level</code> whose ordinal lies
* between <code>startOrdinal</code> and <code>endOrdinal</code>.
*
* <p>If this object {@link #setCache supports cache-writeaback}, also
* <p>If this object
* {@link MemberSource#setCache supports cache-writeback}, also
* writes these members to the cache.
*
* @return {@link List} of {@link RolapMember}
Expand Down
3 changes: 2 additions & 1 deletion src/main/mondrian/rolap/RolapConnection.java
Expand Up @@ -27,7 +27,8 @@
/**
* A <code>RolapConnection</code> is a connection to a Mondrian OLAP Server.
*
* <p>Typically, you create a connection via {@link DriverManager#getConnection}.
* <p>Typically, you create a connection via
* {@link DriverManager#getConnection(java.lang.String, javax.servlet.ServletContext, boolean)}.
* {@link RolapConnectionProperties} describes allowable keywords.</p>
*
* @see RolapSchema
Expand Down

0 comments on commit d2f18dc

Please sign in to comment.