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


Java BaseStepDialog类代码示例

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


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

示例1: getFields

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void getFields(){
   try {
      RowMetaInterface rowMeta = transMeta.getPrevStepFields( stepname );
      if ( rowMeta != null ) {
         BaseStepDialog.getFieldsFromPrevious( rowMeta, m_fieldsView, 1,
                                               new int[]{1}, null, -1, -1,
                                               null );
      }
   }
   catch ( KettleException e ){
      logError( BaseMessages.getString( PKG, "System.Dialog.GetFieldsFailed.Message" ), //$NON-NLS-1$
            e );
      new ErrorDialog( shell,
            BaseMessages.getString( PKG, "System.Dialog.GetFieldsFailed.Title" ), BaseMessages.getString( PKG, //$NON-NLS-1$
                "System.Dialog.GetFieldsFailed.Message" ), e ); //$NON-NLS-1$
   }
}
 
开发者ID:SequoiaDB,项目名称:pentaho-sequoiadb-plugin,代码行数:18,代码来源:SequoiaDBOutputDialog.java

示例2: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null)
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
                   public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       tableItem.setText(2, "=");
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wKey, 1, new int[] { 1, 3}, new int[] {}, -1, -1, listener);
		}
	}
	catch (KettleException ke)
	{
		new ErrorDialog(shell, BaseMessages.getString(PKG, "InsertUpdateDialog.FailedToGetFields.DialogTitle"), 
				BaseMessages.getString(PKG, "InsertUpdateDialog.FailedToGetFields.DialogMessage"), ke); 
	}
}
 
开发者ID:jbleuel,项目名称:pdi-teradata-tpt-plugin,代码行数:25,代码来源:TeraDataBulkLoaderDialog.java

示例3: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get(TableView wTable)
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null)
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
                   public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wTable, 1, new int[] { 1, 2 }, new int[] {}, -1, -1 , listener);
		}
	}
	catch (KettleException ke)
	{
		new ErrorDialog(shell, BaseMessages.getString(PKG, "RssOutputDialog.UnableToGetFieldsError.DialogTitle"), //$NON-NLS-1$
				BaseMessages.getString(PKG, "RssOutputDialog.UnableToGetFieldsError.DialogMessage"), ke); //$NON-NLS-1$
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:24,代码来源:RssOutputDialog.java

示例4: getKeys

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void getKeys()
{
    try
    {
        StepMeta stepMeta = transMeta.findStep(wReference.getText());
        if (stepMeta!=null)
        {
            RowMetaInterface prev = transMeta.getStepFields(stepMeta);
            if (prev!=null)
            {
                BaseStepDialog.getFieldsFromPrevious(prev, wKeys, 1, new int[] { 1 }, new int[] { }, -1, -1, null);
            }
        }
    }
    catch(KettleException e)
    {
        new ErrorDialog(shell, Messages.getString("MergeRowsDialog.ErrorGettingFields.DialogTitle"), Messages.getString("MergeRowsDialog.ErrorGettingFields.DialogMessage"), e); //$NON-NLS-1$ //$NON-NLS-2$
    }
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:20,代码来源:MergeRowsDialog.java

示例5: getValues

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void getValues()
{
    try
    {
        StepMeta stepMeta = transMeta.findStep(wReference.getText());
        if (stepMeta!=null)
        {
            RowMetaInterface prev = transMeta.getStepFields(stepMeta);
            if (prev!=null)
            {
                BaseStepDialog.getFieldsFromPrevious(prev, wValues, 1, new int[] { 1 }, new int[] { }, -1, -1, null);
            }
        }
    }
    catch(KettleException e)
    {
        new ErrorDialog(shell, Messages.getString("MergeRowsDialog.ErrorGettingFields.DialogTitle"), Messages.getString("MergeRowsDialog.ErrorGettingFields.DialogMessage"), e); //$NON-NLS-1$ //$NON-NLS-2$
    }
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:20,代码来源:MergeRowsDialog.java

示例6: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r!=null && r.size()>0)
		{
               BaseStepDialog.getFieldsFromPrevious(r, wFields, 1, new int[] { 1, 2 }, new int[] {}, -1, -1, null);
		}
		else
		{
			MessageBox mb;
			mb = new MessageBox(shell, SWT.OK | SWT.ICON_INFORMATION);
			mb.setMessage(Messages.getString("AggregateRowsDialog.CouldNotRetrieveFields.DialogMessage",Const.CR)); //$NON-NLS-1$ //$NON-NLS-2$
			mb.setText(Messages.getString("AggregateRowsDialog.CouldNotRetrieveFields.DialogTitle")); //$NON-NLS-1$
			mb.open();
		}
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, Messages.getString("AggregateRowsDialog.GetFieldsFailed.DialogTitle"), Messages.getString("AggregateRowsDialog.GetFieldsFailed.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:24,代码来源:AggregateRowsDialog.java

示例7: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get() {
	try {
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null) {
			TableItemInsertListener listener = new TableItemInsertListener()  {
				public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v) {
					if (v.getType() == ValueMeta.TYPE_STRING) {
						// Only process strings
						tableItem.setText(3, BaseMessages.getString(PKG, "System.Combo.No"));
						tableItem.setText(7, BaseMessages.getString(PKG, "System.Combo.No"));
						tableItem.setText(8, BaseMessages.getString(PKG, "System.Combo.No"));
						return true;
					} else {
						return false;
					}
				}
			};
			BaseStepDialog.getFieldsFromPrevious(r, wFields, 1, new int[] { 1 }, new int[] {}, -1, -1, listener);
		}
	} catch (KettleException ke) {
		new ErrorDialog(
				shell,BaseMessages.getString(PKG, "ReplaceStringDialog.FailedToGetFields.DialogTitle"), BaseMessages.getString(PKG, "ReplaceStringDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:25,代码来源:ReplaceStringDialog.java

示例8: getUpdate

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void getUpdate()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null)
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
               	 public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       tableItem.setText(3, "Y");
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wReturn, 1, new int[] { 1, 2}, new int[] {}, -1, -1, listener);
		}
	}
	catch (KettleException ke)
	{
		new ErrorDialog(shell, BaseMessages.getString(PKG, "SynchronizeAfterMergeDialog.FailedToGetFields.DialogTitle"), //$NON-NLS-1$
				BaseMessages.getString(PKG, "SynchronizeAfterMergeDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:25,代码来源:SynchronizeAfterMergeDialog.java

示例9: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepMeta);
		if (r!=null)
		{
			TableItemInsertListener insertListener = new TableItemInsertListener()  
                   {   
                   	public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v) 
                       { 
                           return true;
                       } 
                   };
                   
               BaseStepDialog.getFieldsFromPrevious(r, wFields, 1, new int[] { 1 }, new int[] {}, -1, -1, insertListener);
		}
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, BaseMessages.getString(PKG, "System.Dialog.GetFieldsFailed.Title"), BaseMessages.getString(PKG, "System.Dialog.GetFieldsFailed.Message"), ke);
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:24,代码来源:SetValueConstantDialog.java

示例10: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
           RowMetaInterface r = transMeta.getPrevStepFields(stepname);
           if (r!=null && !r.isEmpty())
           {
   			switch (wTabFolder.getSelectionIndex())
   			{
   			case 0 : BaseStepDialog.getFieldsFromPrevious(r, wFields, 1, new int[] { 1 }, new int[] {}, -1, -1, null); break;
               case 1 : BaseStepDialog.getFieldsFromPrevious(r, wRemove, 1, new int[] { 1 }, new int[] {}, -1, -1, null); break;
               case 2 : BaseStepDialog.getFieldsFromPrevious(r, wMeta, 1, new int[] { 1 }, new int[] {}, 4, 5, null); break;
   			}
           }
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, Messages.getString("SelectValuesDialog.FailedToGetFields.DialogTitle"), Messages.getString("SelectValuesDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:21,代码来源:SelectValuesDialog.java

示例11: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r!=null && !r.isEmpty())
		{
               BaseStepDialog.getFieldsFromPrevious(r, wParam, 1, new int[] { 1 }, new int[] { 2 }, -1, -1, null);
		}
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, Messages.getString("DatabaseJoinDialog.GetFieldsFailed.DialogTitle"), Messages.getString("DatabaseJoinDialog.GetFieldsFailed.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}

}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:17,代码来源:DatabaseJoinDialog.java

示例12: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
           RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r!=null && !r.isEmpty())
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
                   public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       tableItem.setText(2, "=");
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wKey, 1, new int[] { 1, 3}, new int[] {}, -1, -1, listener);
		}
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, Messages.getString("DatabaseLookupDialog.GetFieldsFailed.DialogTitle"), Messages.getString("DatabaseLookupDialog.GetFieldsFailed.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}

}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:25,代码来源:DatabaseLookupDialog.java

示例13: getUpdate

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void getUpdate()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null)
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
                   public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       tableItem.setText(3, "Y");
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wReturn, 1, new int[] { 1, 2}, new int[] {}, -1, -1, listener);
		}
	}
	catch (KettleException ke)
	{
		new ErrorDialog(shell, BaseMessages.getString(PKG, "SalesforceUpsertDialog.FailedToGetFields.DialogTitle"), //$NON-NLS-1$
				BaseMessages.getString(PKG, "SalesforceUpsertDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$
	}
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:25,代码来源:SalesforceUpsertDialog.java

示例14: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r != null)
		{
			BaseStepDialog.getFieldsFromPrevious(r, wFields, 1, new int[] { 1 }, new int[] {}, -1, -1,
					null);
		}
	} catch (KettleException ke)
	{
		new ErrorDialog(
				shell,
				BaseMessages.getString(PKG, "ExecSQLDialog.FailedToGetFields.DialogTitle"), BaseMessages.getString(PKG, "ExecSQLDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}

}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:19,代码来源:ExecSQLDialog.java

示例15: get

import org.pentaho.di.ui.trans.step.BaseStepDialog; //导入依赖的package包/类
private void get()
{
	try
	{
		RowMetaInterface r = transMeta.getPrevStepFields(stepname);
		if (r!=null && !r.isEmpty())
		{
               TableItemInsertListener listener = new TableItemInsertListener()
               {
                   public boolean tableItemInserted(TableItem tableItem, ValueMetaInterface v)
                   {
                       tableItem.setText(2, "=");
                       return true;
                   }
               };
               BaseStepDialog.getFieldsFromPrevious(r, wKey, 1, new int[] { 1, 3}, new int[] {}, -1, -1, listener);
		}
	}
	catch(KettleException ke)
	{
		new ErrorDialog(shell, Messages.getString("UpdateDialog.FailedToGetFields.DialogTitle"), Messages.getString("UpdateDialog.FailedToGetFields.DialogMessage"), ke); //$NON-NLS-1$ //$NON-NLS-2$
	}
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:24,代码来源:UpdateDialog.java


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