available.java
来自「OLAP 的客户端代码」· Java 代码 · 共 22 行
JAVA
22 行
package com.tonbeller.jpivot.ui;
/**
* Indicates that the component may not be available in all situations.
* An UI component may be not available, if the underlying OLAP server
* does not support certain features (Extension's in JPivot).
* <p />
* For example, if the OLAP model does not support sorting, the UI
* UI component for sorting would return false.
*
* @see com.tonbeller.jpivot.core.Extension
* @author av
* @since 08.04.2005
*/
public interface Available {
/**
* return true, if this component currently can be used
*/
boolean isAvailable();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?