本文整理汇总了Java中org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport类的典型用法代码示例。如果您正苦于以下问题:Java IRepositoryExplorerUISupport类的具体用法?Java IRepositoryExplorerUISupport怎么用?Java IRepositoryExplorerUISupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IRepositoryExplorerUISupport类属于org.pentaho.di.ui.repository.repositoryexplorer.uisupport包,在下文中一共展示了IRepositoryExplorerUISupport类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createUISupport
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
public IRepositoryExplorerUISupport createUISupport(Class<? extends IRepositoryService> service) throws UIObjectCreationException {
Class<? extends IRepositoryExplorerUISupport> supportClass = uiSupportMap.get(service);
if(supportClass != null) {
return contruct(supportClass);
} else {
return null;
}
}
开发者ID:yintaoxue,
项目名称:read-open-source-code,
代码行数:10,
代码来源:UISupportRegistery.java
示例2: contruct
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
private IRepositoryExplorerUISupport contruct(Class<? extends IRepositoryExplorerUISupport> supportClass) throws UIObjectCreationException {
try {
return (IRepositoryExplorerUISupport) supportClass.newInstance();
} catch (Throwable th) {
throw new UIObjectCreationException(th);
}
}
开发者ID:yintaoxue,
项目名称:read-open-source-code,
代码行数:9,
代码来源:UISupportRegistery.java
示例3: createUISupport
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
public IRepositoryExplorerUISupport createUISupport( Class<? extends IRepositoryService> service ) throws UIObjectCreationException {
Class<? extends IRepositoryExplorerUISupport> supportClass = uiSupportMap.get( service );
if ( supportClass != null ) {
return contruct( supportClass );
} else {
return null;
}
}
开发者ID:pentaho,
项目名称:pentaho-kettle,
代码行数:10,
代码来源:UISupportRegistery.java
示例4: contruct
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
private IRepositoryExplorerUISupport contruct( Class<? extends IRepositoryExplorerUISupport> supportClass ) throws UIObjectCreationException {
try {
return supportClass.newInstance();
} catch ( Throwable th ) {
throw new UIObjectCreationException( th );
}
}
开发者ID:pentaho,
项目名称:pentaho-kettle,
代码行数:9,
代码来源:UISupportRegistery.java
示例5: UISupportRegistery
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
private UISupportRegistery() {
uiSupportMap = new HashMap<Class<? extends IRepositoryService>, Class<? extends IRepositoryExplorerUISupport>>();
}
开发者ID:yintaoxue,
项目名称:read-open-source-code,
代码行数:4,
代码来源:UISupportRegistery.java
示例6: registerUISupport
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
public void registerUISupport(Class<? extends IRepositoryService> service, Class<? extends IRepositoryExplorerUISupport> supportClass) {
uiSupportMap.put(service, supportClass);
}
开发者ID:yintaoxue,
项目名称:read-open-source-code,
代码行数:4,
代码来源:UISupportRegistery.java
示例7: UISupportRegistery
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
private UISupportRegistery() {
uiSupportMap =
new HashMap<Class<? extends IRepositoryService>, Class<? extends IRepositoryExplorerUISupport>>();
}
开发者ID:pentaho,
项目名称:pentaho-kettle,
代码行数:5,
代码来源:UISupportRegistery.java
示例8: registerUISupport
点赞 2
import org.pentaho.di.ui.repository.repositoryexplorer.uisupport.IRepositoryExplorerUISupport; //导入依赖的package包/类
public void registerUISupport( Class<? extends IRepositoryService> service,
Class<? extends IRepositoryExplorerUISupport> supportClass ) {
uiSupportMap.put( service, supportClass );
}
开发者ID:pentaho,
项目名称:pentaho-kettle,
代码行数:5,
代码来源:UISupportRegistery.java