当前位置: 首页>>代码示例>>Java>>正文


Java LifecyclePlugin类代码示例

本文整理汇总了Java中org.pentaho.di.core.annotations.LifecyclePlugin的典型用法代码示例。如果您正苦于以下问题:Java LifecyclePlugin类的具体用法?Java LifecyclePlugin怎么用?Java LifecyclePlugin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


LifecyclePlugin类属于org.pentaho.di.core.annotations包,在下文中一共展示了LifecyclePlugin类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: LifecyclePluginType

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
private LifecyclePluginType() {
  super(LifecyclePlugin.class, "LIFECYCLE LISTENERS", "Lifecycle listener plugin type");
  populateFolders("repositories");
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:5,代码来源:LifecyclePluginType.java

示例2: extractID

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractID(Annotation annotation) {
  return ((LifecyclePlugin) annotation).id();
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:5,代码来源:LifecyclePluginType.java

示例3: extractName

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractName(Annotation annotation) {
  return ((LifecyclePlugin) annotation).name();
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:5,代码来源:LifecyclePluginType.java

示例4: LifecyclePluginType

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
private LifecyclePluginType() {
  super( LifecyclePlugin.class, "LIFECYCLE LISTENERS", "Lifecycle listener plugin type" );
  populateFolders( "repositories" );
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:LifecyclePluginType.java

示例5: extractID

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractID( Annotation annotation ) {
  return ( (LifecyclePlugin) annotation ).id();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:LifecyclePluginType.java

示例6: extractName

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractName( Annotation annotation ) {
  return ( (LifecyclePlugin) annotation ).name();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:LifecyclePluginType.java

示例7: extractClassLoaderGroup

import org.pentaho.di.core.annotations.LifecyclePlugin; //导入依赖的package包/类
@Override
protected String extractClassLoaderGroup( Annotation annotation ) {
  return ( (LifecyclePlugin) annotation ).classLoaderGroup();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:LifecyclePluginType.java


注:本文中的org.pentaho.di.core.annotations.LifecyclePlugin类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。