本文整理汇总了Java中org.pentaho.di.job.entry.JobEntryDialogInterface类的典型用法代码示例。如果您正苦于以下问题:Java JobEntryDialogInterface类的具体用法?Java JobEntryDialogInterface怎么用?Java JobEntryDialogInterface使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JobEntryDialogInterface类属于org.pentaho.di.job.entry包,在下文中一共展示了JobEntryDialogInterface类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog(JobEntryInterface jei, JobMeta jobMeta)
{
String dialogClassName = jei.getDialogClassName();
try
{
Class<?> dialogClass;
Class<?>[] paramClasses = new Class[] { spoon.getShell().getClass(), JobEntryInterface.class,
Repository.class, JobMeta.class };
Object[] paramArgs = new Object[] { spoon.getShell(), jei, spoon.getRepository(), jobMeta };
Constructor<?> dialogConstructor;
dialogClass = jei.getPluginID()!=null?
JobEntryLoader.getInstance().loadClassByID(jei.getPluginID(),dialogClassName):
JobEntryLoader.getInstance().loadClass(jei.getJobEntryType().getDescription(), dialogClassName);
dialogConstructor = dialogClass.getConstructor(paramClasses);
return (JobEntryDialogInterface) dialogConstructor.newInstance(paramArgs);
} catch (Throwable t)
{
t.printStackTrace();
spoon.getLog().logError(spoon.toString(), "Could not create dialog for " + dialogClassName, t);
}
return null;
}
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:24,代码来源:SpoonJobDelegate.java
示例2: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog(JobEntryInterface jobEntryInterface, JobMeta jobMeta)
{
PluginRegistry registry = PluginRegistry.getInstance();
String dialogClassName = jobEntryInterface.getDialogClassName();
try
{
Class<?> dialogClass;
Class<?>[] paramClasses = new Class[] { spoon.getShell().getClass(), JobEntryInterface.class,
Repository.class, JobMeta.class };
Object[] paramArgs = new Object[] { spoon.getShell(), jobEntryInterface, spoon.getRepository(), jobMeta };
Constructor<?> dialogConstructor;
PluginInterface plugin = registry.getPlugin(JobEntryPluginType.class, jobEntryInterface);
dialogClass = PluginRegistry.getInstance().getClass(plugin, dialogClassName);
dialogConstructor = dialogClass.getConstructor(paramClasses);
return (JobEntryDialogInterface) dialogConstructor.newInstance(paramArgs);
} catch (Throwable t)
{
t.printStackTrace();
spoon.getLog().logError(spoon.toString(), "Could not create dialog for " + dialogClassName, t);
}
return null;
}
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:24,代码来源:SpoonJobDelegate.java
示例3: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog( JobEntryInterface jobEntryInterface, JobMeta jobMeta ) {
PluginRegistry registry = PluginRegistry.getInstance();
String dialogClassName = jobEntryInterface.getDialogClassName();
try {
Class<?> dialogClass;
Class<?>[] paramClasses =
new Class<?>[] { spoon.getShell().getClass(), JobEntryInterface.class, Repository.class, JobMeta.class };
Object[] paramArgs = new Object[] { spoon.getShell(), jobEntryInterface, spoon.getRepository(), jobMeta };
Constructor<?> dialogConstructor;
try {
PluginInterface plugin = registry.getPlugin( JobEntryPluginType.class, jobEntryInterface );
dialogClass = PluginRegistry.getInstance().getClass( plugin, dialogClassName );
} catch ( Exception e ) {
dialogClass = Class.forName( dialogClassName, true, jobEntryInterface.getClass().getClassLoader() );
}
dialogConstructor = dialogClass.getConstructor( paramClasses );
JobEntryDialogInterface entryDialogInterface =
(JobEntryDialogInterface) dialogConstructor.newInstance( paramArgs );
entryDialogInterface.setMetaStore( spoon.getMetaStore() );
return entryDialogInterface;
} catch ( Throwable t ) {
t.printStackTrace();
spoon.getLog().logError( spoon.toString(), "Could not create dialog for " + dialogClassName, t );
return null;
}
}
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:28,代码来源:SpoonJobDelegate.java
示例4: editJobEntry
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public void editJobEntry(JobMeta jobMeta, JobEntryCopy je)
{
try
{
spoon.getLog().logBasic(spoon.toString(), Messages.getString("Spoon.Log.EditJobEntry", je.getName())); //$NON-NLS-1$
JobEntryCopy before = (JobEntryCopy) je.clone_deep();
JobEntryInterface jei = je.getEntry();
if (jei.isSpecial())
{
JobEntrySpecial special = (JobEntrySpecial) jei;
if (special.isDummy())
{
return;
}
}
JobEntryDialogInterface d = getJobEntryDialog(jei, jobMeta);
if (d != null)
{
if (d.open() != null)
{
// First see if the name changed.
// If so, we need to verify that the name is not already used in the job.
//
jobMeta.renameJobEntryIfNameCollides(je);
JobEntryCopy after = (JobEntryCopy) je.clone();
spoon.addUndoChange(jobMeta, new JobEntryCopy[] { before }, new JobEntryCopy[] { after }, new int[] { jobMeta.indexOfJobEntry(je) });
spoon.refreshGraph();
spoon.refreshTree();
}
}
else
{
MessageBox mb = new MessageBox(spoon.getShell(), SWT.OK | SWT.ICON_INFORMATION);
mb.setMessage(Messages.getString("Spoon.Dialog.JobEntryCanNotBeChanged.Message")); //$NON-NLS-1$
mb.setText(Messages.getString("Spoon.Dialog.JobEntryCanNotBeChanged.Title")); //$NON-NLS-1$
mb.open();
}
} catch (Exception e)
{
if (!spoon.getShell().isDisposed())
new ErrorDialog(
spoon.getShell(),
Messages.getString("Spoon.ErrorDialog.ErrorEditingJobEntry.Title"),
Messages.getString("Spoon.ErrorDialog.ErrorEditingJobEntry.Message"), e); //$NON-NLS-1$ //$NON-NLS-2$
}
}
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:53,代码来源:SpoonJobDelegate.java
示例5: editJobEntry
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public void editJobEntry(JobMeta jobMeta, JobEntryCopy je)
{
try
{
spoon.getLog().logBasic(spoon.toString(), BaseMessages.getString(PKG, "Spoon.Log.EditJobEntry", je.getName())); //$NON-NLS-1$
JobEntryCopy before = (JobEntryCopy) je.clone_deep();
JobEntryInterface jei = je.getEntry();
if (jei.isSpecial())
{
JobEntrySpecial special = (JobEntrySpecial) jei;
if (special.isDummy())
{
return;
}
}
JobEntryDialogInterface d = getJobEntryDialog(jei, jobMeta);
if (d != null)
{
if (d.open() != null)
{
// First see if the name changed.
// If so, we need to verify that the name is not already used in the job.
//
jobMeta.renameJobEntryIfNameCollides(je);
JobEntryCopy after = (JobEntryCopy) je.clone();
spoon.addUndoChange(jobMeta, new JobEntryCopy[] { before }, new JobEntryCopy[] { after }, new int[] { jobMeta.indexOfJobEntry(je) });
spoon.refreshGraph();
spoon.refreshTree();
}
}
else
{
MessageBox mb = new MessageBox(spoon.getShell(), SWT.OK | SWT.ICON_INFORMATION);
mb.setMessage(BaseMessages.getString(PKG, "Spoon.Dialog.JobEntryCanNotBeChanged.Message")); //$NON-NLS-1$
mb.setText(BaseMessages.getString(PKG, "Spoon.Dialog.JobEntryCanNotBeChanged.Title")); //$NON-NLS-1$
mb.open();
}
} catch (Exception e)
{
if (!spoon.getShell().isDisposed())
new ErrorDialog(
spoon.getShell(),
BaseMessages.getString(PKG, "Spoon.ErrorDialog.ErrorEditingJobEntry.Title"), //$NON-NLS-1$
BaseMessages.getString(PKG, "Spoon.ErrorDialog.ErrorEditingJobEntry.Message"), e); //$NON-NLS-1$
}
}
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:53,代码来源:SpoonJobDelegate.java
示例6: editJobEntry
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public void editJobEntry( JobMeta jobMeta, JobEntryCopy je ) {
try {
spoon.getLog().logBasic(
spoon.toString(), BaseMessages.getString( PKG, "Spoon.Log.EditJobEntry", je.getName() ) );
JobEntryCopy before = (JobEntryCopy) je.clone_deep();
JobEntryInterface jei = je.getEntry();
if ( jei.isSpecial() ) {
JobEntrySpecial special = (JobEntrySpecial) jei;
if ( special.isDummy() ) {
return;
}
}
JobEntryDialogInterface d = getJobEntryDialog( jei, jobMeta );
if ( d != null ) {
if ( d.open() != null ) {
// First see if the name changed.
// If so, we need to verify that the name is not already used in the job.
//
jobMeta.renameJobEntryIfNameCollides( je );
JobEntryCopy after = (JobEntryCopy) je.clone();
spoon.addUndoChange(
jobMeta, new JobEntryCopy[] { before }, new JobEntryCopy[] { after }, new int[] { jobMeta
.indexOfJobEntry( je ) } );
spoon.refreshGraph();
spoon.refreshTree();
}
} else {
MessageBox mb = new MessageBox( spoon.getShell(), SWT.OK | SWT.ICON_INFORMATION );
mb.setMessage( BaseMessages.getString( PKG, "Spoon.Dialog.JobEntryCanNotBeChanged.Message" ) );
mb.setText( BaseMessages.getString( PKG, "Spoon.Dialog.JobEntryCanNotBeChanged.Title" ) );
mb.open();
}
} catch ( Exception e ) {
if ( !spoon.getShell().isDisposed() ) {
new ErrorDialog( spoon.getShell(),
BaseMessages.getString( PKG, "Spoon.ErrorDialog.ErrorEditingJobEntry.Title" ),
BaseMessages.getString( PKG, "Spoon.ErrorDialog.ErrorEditingJobEntry.Message" ), e );
}
}
}
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:47,代码来源:SpoonJobDelegate.java
示例7: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog(JobEntryInterface jei, JobMeta jobMeta) {
return delegates.jobs.getJobEntryDialog(jei, jobMeta);
}
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:5,代码来源:Spoon.java
示例8: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog(JobEntryInterface jei, JobMeta jobMeta) {
return delegates.jobs.getJobEntryDialog(jei, jobMeta);
}
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:5,代码来源:Spoon.java
示例9: getJobEntryDialog
import org.pentaho.di.job.entry.JobEntryDialogInterface; //导入依赖的package包/类
public JobEntryDialogInterface getJobEntryDialog( JobEntryInterface jei, JobMeta jobMeta ) {
return delegates.jobs.getJobEntryDialog( jei, jobMeta );
}
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:Spoon.java
注:本文中的org.pentaho.di.job.entry.JobEntryDialogInterface类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论