📄 swapaxesui.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.table.navi;
import com.tonbeller.jpivot.core.ModelChangeEvent;
import com.tonbeller.jpivot.core.ModelChangeListener;
import com.tonbeller.jpivot.olap.navi.SwapAxes;
import com.tonbeller.jpivot.table.TableComponent;
import com.tonbeller.jpivot.table.TableComponentExtensionSupport;
import com.tonbeller.wcf.controller.RequestContext;
/**
* swaps table axes. The toolbar button is connected to the boolean action property.
*
* @author av
*/
public class SwapAxesUI extends TableComponentExtensionSupport implements ModelChangeListener {
SwapAxes extension;
public static final String ID = "swapAxes";
public String getId() {
return ID;
}
public void initialize(RequestContext context, TableComponent table) throws Exception {
super.initialize(context, table);
table.getOlapModel().addModelChangeListener(this);
extension = getExtension();
}
public boolean isButtonPressed() {
return extension != null && extension.isSwapAxes();
}
public void setButtonPressed(boolean value) {
if (extension != null && extension.canSwapAxes()) {
extension.setSwapAxes(value);
}
}
public boolean isAvailable() {
return getExtension() != null;
}
public void startBuild(RequestContext context) {
super.startBuild(context);
}
private SwapAxes getExtension() {
return (SwapAxes) table.getOlapModel().getExtension(SwapAxes.ID);
}
public void modelChanged(ModelChangeEvent e) {
}
public void structureChanged(ModelChangeEvent e) {
extension = getExtension();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -