refobjectsupport.java
来自「数据仓库展示程序」· Java 代码 · 共 93 行
JAVA
93 行
/*
// $Id: //open/mondrian/src/main/mondrian/jolap/RefObjectSupport.java#3 $
// 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.
// (C) Copyright 2002-2005 Kana Software, Inc. and others.
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
// jhyde, Dec 23, 2002
*/
package mondrian.jolap;
import javax.jmi.reflect.*;
import java.util.Collection;
import java.util.List;
/**
* Abstract implementation of {@link RefObject} and several other JMI
* reflection interfaces.
*
* @author jhyde
* @since Dec 23, 2002
* @version $Id: //open/mondrian/src/main/mondrian/jolap/RefObjectSupport.java#3 $
**/
abstract class RefObjectSupport implements RefObject {
public boolean refIsInstanceOf(RefObject refObject, boolean b) {
throw new UnsupportedOperationException();
}
public RefClass refClass() {
throw new UnsupportedOperationException();
}
public RefFeatured refImmediateComposite() {
throw new UnsupportedOperationException();
}
public RefFeatured refOutermostComposite() {
throw new UnsupportedOperationException();
}
public void refDelete() {
throw new UnsupportedOperationException();
}
public void refSetValue(RefObject refObject, Object o) {
throw new UnsupportedOperationException();
}
public void refSetValue(String s, Object o) {
throw new UnsupportedOperationException();
}
public Object refGetValue(RefObject refObject) {
throw new UnsupportedOperationException();
}
public Object refGetValue(String s) {
throw new UnsupportedOperationException();
}
public Object refInvokeOperation(RefObject refObject, List list) throws RefException {
throw new UnsupportedOperationException();
}
public Object refInvokeOperation(String s, List list) throws RefException {
throw new UnsupportedOperationException();
}
public RefObject refMetaObject() {
throw new UnsupportedOperationException();
}
public RefPackage refImmediatePackage() {
throw new UnsupportedOperationException();
}
public RefPackage refOutermostPackage() {
throw new UnsupportedOperationException();
}
public String refMofId() {
throw new UnsupportedOperationException();
}
public Collection refVerifyConstraints(boolean b) {
throw new UnsupportedOperationException();
}
}
// End RefObjectSupport.java
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?