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


Java ProcessFilesMeta类代码示例

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


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

示例1: updateOperation

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
private void updateOperation() {
  wlOverwriteTarget.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wOverwriteTarget.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wlAddResult.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wAddResult.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wlTargetFileNameField.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wTargetFileNameField.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wlCreateParentFolder.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
  wCreateParentFolder.setEnabled(
    ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) != ProcessFilesMeta.OPERATION_TYPE_DELETE );
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:19,代码来源:ProcessFilesDialog.java

示例2: getData

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
/**
 * Copy information from the meta-data input to the dialog fields.
 */
public void getData() {
  if ( log.isDebug() ) {
    logDebug( BaseMessages.getString( PKG, "ProcessFilesDialog.Log.GettingKeyInfo" ) );
  }

  if ( input.getDynamicSourceFileNameField() != null ) {
    wSourceFileNameField.setText( input.getDynamicSourceFileNameField() );
  }
  if ( input.getDynamicTargetFileNameField() != null ) {
    wTargetFileNameField.setText( input.getDynamicTargetFileNameField() );
  }
  wOperation.setText( ProcessFilesMeta.getOperationTypeDesc( input.getOperationType() ) );
  wAddResult.setSelection( input.isaddTargetFileNametoResult() );
  wOverwriteTarget.setSelection( input.isOverwriteTargetFile() );
  wCreateParentFolder.setSelection( input.isCreateParentFolder() );
  wSimulate.setSelection( input.isSimulate() );

  wStepname.selectAll();
  wStepname.setFocus();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:24,代码来源:ProcessFilesDialog.java

示例3: updateOperation

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
private void updateOperation()
{
	wlOverwriteTarget.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wOverwriteTarget.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wlAddResult.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wAddResult.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wlTargetFileNameField.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wTargetFileNameField.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wlCreateParentFolder.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
	wCreateParentFolder.setEnabled(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText())!=ProcessFilesMeta.OPERATION_TYPE_DELETE);
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:12,代码来源:ProcessFilesDialog.java

示例4: getData

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
/**
 * Copy information from the meta-data input to the dialog fields.
 */ 
public void getData()
{
	if(log.isDebug()) log.logDebug(toString(), Messages.getString("ProcessFilesDialog.Log.GettingKeyInfo")); //$NON-NLS-1$

	if (input.getDynamicSourceFileNameField() !=null)   wSourceFileNameField.setText(input.getDynamicSourceFileNameField());
	if (input.getDynamicTargetFileNameField() !=null)   wTargetFileNameField.setText(input.getDynamicTargetFileNameField());
	wOperation.setText(ProcessFilesMeta.getOperationTypeDesc(input.getOperationType()));
	wAddResult.setSelection(input.isaddTargetFileNametoResult());
	wOverwriteTarget.setSelection(input.isOverwriteTargetFile());
	wCreateParentFolder.setSelection(input.isCreateParentFolder());
	wSimulate.setSelection(input.isSimulate());
	wStepname.selectAll();
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:17,代码来源:ProcessFilesDialog.java

示例5: ok

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
private void ok()
{
	if (Const.isEmpty(wStepname.getText())) return;
	input.setDynamicSourceFileNameField(wSourceFileNameField.getText() );
	input.setDynamicTargetFileNameField(wTargetFileNameField.getText() );
	input.setOperationType(ProcessFilesMeta.getOperationTypeByDesc(wOperation.getText()));
	input.setaddTargetFileNametoResult(wAddResult.getSelection());
	input.setOverwriteTargetFile(wOverwriteTarget.getSelection());
	input.setCreateParentFolder(wCreateParentFolder.getSelection());
	input.setSimulate(wSimulate.getSelection());
	stepname = wStepname.getText(); // return value
	
	dispose();
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:15,代码来源:ProcessFilesDialog.java

示例6: getData

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
/**
 * Copy information from the meta-data input to the dialog fields.
 */ 
public void getData()
{
	if(log.isDebug()) logDebug(BaseMessages.getString(PKG, "ProcessFilesDialog.Log.GettingKeyInfo")); //$NON-NLS-1$

	if (input.getDynamicSourceFileNameField() !=null)   wSourceFileNameField.setText(input.getDynamicSourceFileNameField());
	if (input.getDynamicTargetFileNameField() !=null)   wTargetFileNameField.setText(input.getDynamicTargetFileNameField());
	wOperation.setText(ProcessFilesMeta.getOperationTypeDesc(input.getOperationType()));
	wAddResult.setSelection(input.isaddTargetFileNametoResult());
	wOverwriteTarget.setSelection(input.isOverwriteTargetFile());
	wCreateParentFolder.setSelection(input.isCreateParentFolder());
	wSimulate.setSelection(input.isSimulate());
	wStepname.selectAll();
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:17,代码来源:ProcessFilesDialog.java

示例7: ok

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
private void ok() {
  if ( Utils.isEmpty( wStepname.getText() ) ) {
    return;
  }
  input.setDynamicSourceFileNameField( wSourceFileNameField.getText() );
  input.setDynamicTargetFileNameField( wTargetFileNameField.getText() );
  input.setOperationType( ProcessFilesMeta.getOperationTypeByDesc( wOperation.getText() ) );
  input.setaddTargetFileNametoResult( wAddResult.getSelection() );
  input.setOverwriteTargetFile( wOverwriteTarget.getSelection() );
  input.setCreateParentFolder( wCreateParentFolder.getSelection() );
  input.setSimulate( wSimulate.getSelection() );
  stepname = wStepname.getText(); // return value

  dispose();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:16,代码来源:ProcessFilesDialog.java

示例8: ProcessFilesDialog

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
public ProcessFilesDialog(Shell parent, Object in, TransMeta transMeta, String sname)
{
	super(parent, (BaseStepMeta)in, transMeta, sname);
	input=(ProcessFilesMeta)in;
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:6,代码来源:ProcessFilesDialog.java

示例9: ProcessFilesDialog

import org.pentaho.di.trans.steps.processfiles.ProcessFilesMeta; //导入依赖的package包/类
public ProcessFilesDialog( Shell parent, Object in, TransMeta transMeta, String sname ) {
  super( parent, (BaseStepMeta) in, transMeta, sname );
  input = (ProcessFilesMeta) in;
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:ProcessFilesDialog.java


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