📄 mondrianmemento.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.mondrian;
import java.io.Serializable;
import com.tonbeller.jpivot.olap.query.Memento;
/**
* Java Bean object to hold the state of a Mondrian MDX session.
* Contains parts of MondrianModel and subordinate objects.
*/
public class MondrianMemento extends Memento implements Serializable {
static final int CURRENT_VERSION = 3;
int version;
// properties of the session
String jdbcDriver;
String connectString;
/**
* Get connectString.
* @return connectString
*/
public String getConnectString() {
return connectString;
}
/**
* Get jdbcDriver.
* @return jdbcDriver
*/
public String getJdbcDriver() {
return jdbcDriver;
}
/**
* Set connectString.
* @param connectString
*/
public void setConnectString(String connectString) {
this.connectString = connectString;
}
/**
* Set jdbcDriver.
* @param jdbcDriver
*/
public void setJdbcDriver(String jdbcDriver) {
this.jdbcDriver = jdbcDriver;
}
/**
* @return version
*/
public int getVersion() {
return version;
}
/**
* @param i
*/
public void setVersion(int i) {
version = i;
}
} // End MondrianMemento
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -