/*
// $Id: LevelNode.java 315 2010-05-29 00:56:11Z jhyde $
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2007-2010 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package org.olap4j.mdx;
import org.olap4j.metadata.Level;
import org.olap4j.type.Type;
import org.olap4j.type.LevelType;
/**
* Usage of a {@link org.olap4j.metadata.Level} as an expression in an MDX
* parse tree.
*
* @author jhyde
* @version $Id: LevelNode.java 315 2010-05-29 00:56:11Z jhyde $
* @since Jun 4, 2007
*/
public class LevelNode implements ParseTreeNode {
private final ParseRegion region;
private final Level level;
/**
* Creates a LevelNode.
*
* @param region Region of source code
* @param level Level which is used in the expression
*/
public LevelNode(
ParseRegion region,
Level level)
{
this.region = region;
this.level = level;
}
public ParseRegion getRegion() {
return region;
}
/**
* Returns the Level used in this expression.
*
* @return level used in this expression
*/
public Level getLevel() {
return level;
}
public <T> T accept(ParseTreeVisitor<T> visitor) {
return visitor.visit(this);
}
public Type getType() {
return new LevelType(
level.getDimension(),
level.getHierarchy(),
level);
}
public void unparse(ParseTreeWriter writer) {
writer.getPrintWriter().print(level.getUniqueName());
}
public String toString() {
return level.getUniqueName();
}
public LevelNode deepCopy() {
// LevelNode is immutable
return this;
}
}
// End LevelNode.java