resultimpl.java
来自「OLAP 的客户端代码」· Java 代码 · 共 101 行
JAVA
101 行
/*
* ====================================================================
* 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 .
* Copyright (C) 2003-2004 TONBELLER AG.
* All Rights Reserved.
* You must accept the terms of that agreement to use this software.
* ====================================================================
*
*
*/
package com.tonbeller.jpivot.olap.model.impl;
import java.util.List;
import com.tonbeller.jpivot.olap.model.Axis;
import com.tonbeller.jpivot.olap.model.Result;
import com.tonbeller.jpivot.olap.model.Visitor;
/**
* Created on 11.10.2002
*
* @author av
*/
public class ResultImpl implements Result {
List cells;
Axis slicer;
Axis[] axes;
/**
* Constructor for ResultImpl.
*/
public ResultImpl() {
super();
}
/**
* Returns the axes.
* @return Axis[]
*/
public Axis[] getAxes() {
return axes;
}
/**
* Returns the cells.
* @return List
*/
public List getCells() {
return cells;
}
/**
* Returns the slicer.
* @return Axis
*/
public Axis getSlicer() {
return slicer;
}
/**
* Sets the axes.
* @param axes The axes to set
*/
public void setAxes(Axis[] axes) {
this.axes = axes;
}
/**
* Sets the cells.
* @param cells The cells to set
*/
public void setCells(List cells) {
this.cells = cells;
}
/**
* Sets the slicer.
* @param slicer The slicer to set
*/
public void setSlicer(Axis slicer) {
this.slicer = slicer;
}
public void accept(Visitor visitor) {
visitor.visitResult(this);
}
public Object getRootDecoree() {
return this;
}
public boolean isOverflowOccured() {
return false;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?