📄 levelimpl.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 com.tonbeller.jpivot.olap.model.Hierarchy;
import com.tonbeller.jpivot.olap.model.Level;
import com.tonbeller.jpivot.olap.model.Visitor;
/**
* Created on 11.10.2002
*
* @author av
*/
public class LevelImpl implements Level {
String label;
Hierarchy hierarchy;
public LevelImpl() {
}
public LevelImpl(String label, Hierarchy hierarchy) {
this.label = label;
this.hierarchy = hierarchy;
}
/**
* Returns the hierarchy.
* @return Hierarchy
*/
public Hierarchy getHierarchy() {
return hierarchy;
}
/**
* Sets the hierarchy.
* @param hierarchy The hierarchy to set
*/
public void setHierarchy(Hierarchy hierarchy) {
this.hierarchy = hierarchy;
}
public void accept(Visitor visitor) {
visitor.visitLevel(this);
}
public Object getRootDecoree() {
return this;
}
/**
* Returns the label.
* @return String
*/
public String getLabel() {
return label;
}
/**
* Sets the label.
* @param label The label to set
*/
public void setLabel(String label) {
this.label = label;
}
/**
* @return unique name
*/
public String getUniqueName() {
return "[" + label + "]";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -