📄 resultimpl.java
字号:
/*
* ====================================================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -