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


Java TabMapEntry.getObject方法代码示例

本文整理汇总了Java中org.pentaho.di.ui.spoon.TabMapEntry.getObject方法的典型用法代码示例。如果您正苦于以下问题:Java TabMapEntry.getObject方法的具体用法?Java TabMapEntry.getObject怎么用?Java TabMapEntry.getObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.pentaho.di.ui.spoon.TabMapEntry的用法示例。


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

示例1: getActiveMeta

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public EngineMetaInterface getActiveMeta()
{
	TabSet tabfolder = spoon.tabfolder;
	if (tabfolder == null)
		return null;
	TabItem tabItem = tabfolder.getSelected();
	if (tabItem == null)
		return null;

	// What transformation is in the active tab?
	// TransLog, TransGraph & TransHist contain the same transformation
	//
	TabMapEntry mapEntry = getTab(tabfolder.getSelected());
	EngineMetaInterface meta = null;
	if (mapEntry != null)
	{
		if (mapEntry.getObject() instanceof TransGraph)
			meta = (mapEntry.getObject()).getMeta();
		if (mapEntry.getObject() instanceof JobGraph)
			meta = (mapEntry.getObject()).getMeta();
	}

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

示例2: getActiveMeta

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public EngineMetaInterface getActiveMeta() {
  TabSet tabfolder = spoon.tabfolder;
  if ( tabfolder == null ) {
    return null;
  }
  TabItem tabItem = tabfolder.getSelected();
  if ( tabItem == null ) {
    return null;
  }

  // What transformation is in the active tab?
  // TransLog, TransGraph & TransHist contain the same transformation
  //
  TabMapEntry mapEntry = getTab( tabfolder.getSelected() );
  EngineMetaInterface meta = null;
  if ( mapEntry != null ) {
    if ( mapEntry.getObject() instanceof TransGraph ) {
      meta = ( mapEntry.getObject() ).getMeta();
    }
    if ( mapEntry.getObject() instanceof JobGraph ) {
      meta = ( mapEntry.getObject() ).getMeta();
    }
  }

  return meta;
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:27,代码来源:SpoonTabsDelegate.java

示例3: tabSelected

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public void tabSelected( TabItem item ) {
  // See which core objects to show
  //
  for ( TabMapEntry entry : tabMap ) {
    boolean isAbstractGraph = ( entry.getObject() instanceof AbstractGraph );
    if ( item.equals( entry.getTabItem() ) ) {
      if ( isAbstractGraph ) {
        EngineMetaInterface meta = entry.getObject().getMeta();
        if ( meta != null ) {
          meta.setInternalKettleVariables();
        }
        if ( spoon.getCoreObjectsState() != SpoonInterface.STATE_CORE_OBJECTS_SPOON ) {
          spoon.refreshCoreObjects();
        }
        ( (AbstractGraph) entry.getObject() ).setFocus();
      }
      break;
    }
  }

  // Also refresh the tree
  spoon.refreshTree();
  spoon.setShellText(); // calls also enableMenus() and markTabsChanged()
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:25,代码来源:SpoonTabsDelegate.java

示例4: findJobGraphOfJob

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public JobGraph findJobGraphOfJob(JobMeta jobMeta)
{
	// Now loop over the entries in the tab-map
	for (TabMapEntry mapEntry : spoon.delegates.tabs.getTabs())
	{
		if (mapEntry.getObject() instanceof JobGraph)
		{
			JobGraph jobGraph = (JobGraph) mapEntry.getObject();
			if (jobGraph.getMeta().equals(jobMeta))
				return jobGraph;
		}
	}
	return null;
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:15,代码来源:SpoonJobDelegate.java

示例5: tabSelected

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public void tabSelected(TabItem item)
{
	List<TabMapEntry> collection = spoon.delegates.tabs.getTabs();

	// See which core objects to show
	//
	for (TabMapEntry entry : collection)
	{
		if (item.equals(entry.getTabItem()))
		{
			// TabItemInterface itemInterface = entry.getObject();

			//
			// Another way to implement this may be to keep track of the
			// state of the core object tree in method
			// addCoreObjectsToTree()
			//
			if (entry.getObject() instanceof TransGraph || entry.getObject() instanceof JobGraph)
			{
				EngineMetaInterface meta = entry.getObject().getMeta();
				if (meta != null)
				{
					meta.setInternalKettleVariables();
				}
				if (spoon.getCoreObjectsState() != SpoonInterface.STATE_CORE_OBJECTS_SPOON)
				{
					spoon.refreshCoreObjects();
				}
			}
		}
	}

	// Also refresh the tree
	spoon.refreshTree();
	spoon.enableMenus();
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:37,代码来源:SpoonTransformationDelegate.java

示例6: findTransGraphOfTransformation

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public TransGraph findTransGraphOfTransformation(TransMeta transMeta)
{
	// Now loop over the entries in the tab-map
	for (TabMapEntry mapEntry : spoon.delegates.tabs.getTabs())
	{
		if (mapEntry.getObject() instanceof TransGraph)
		{
			TransGraph transGraph = (TransGraph) mapEntry.getObject();
			if (transGraph.getMeta().equals(transMeta))
				return transGraph;
		}
	}
	return null;
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:15,代码来源:SpoonTransformationDelegate.java

示例7: findTabForTransformation

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
/**
* Finds the tab for the transformation that matches the metadata provided (either the file must be the same or the repository id).
* 
* @param trans Transformation metadata to look for
* @return Tab with transformation open whose metadata matches {@code trans} or {@code null} if no tab exists. 
* @throws KettleFileException If there is a problem loading the file object for an open transformation with an invalid a filename.
*/
public TabMapEntry findTabForTransformation(TransMeta trans) throws KettleFileException {
  // File for the transformation we're looking for.  It will be loaded upon first request.
  FileObject transFile = null;
  for (TabMapEntry entry : tabMap) {
    if (entry == null || entry.getTabItem().isDisposed()) {
      continue;
    }
    if (trans.getFilename() != null && entry.getFilename() != null) {
      // If the entry has a file name it is the same as trans iff. they originated from the same files
      FileObject entryFile = KettleVFS.getFileObject(entry.getFilename());
      if (transFile == null) {
        transFile = KettleVFS.getFileObject(trans.getFilename());
      }
      if (entryFile.equals(transFile)) {
        return entry;
      }
    } else if (trans.getObjectId() != null && entry.getObject() != null) {
      EngineMetaInterface meta = entry.getObject().getMeta();
      if(meta != null && trans.getObjectId().equals(meta.getObjectId())) {
        // If the transformation has an object id and the entry shares the same id they are the same
        return entry;
      }
    }
  }
  // No tabs for the transformation exist and are not disposed
  return null;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:35,代码来源:SpoonTabsDelegate.java

示例8: tabSelected

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public void tabSelected(TabItem item)
{
	ArrayList<TabMapEntry> collection = new ArrayList<TabMapEntry>(tabMap);

	// See which core objects to show
	//
	for (TabMapEntry entry : collection)
	{
		boolean isTrans = (entry.getObject() instanceof TransGraph);
		
		if (item.equals(entry.getTabItem()))
		{
			if (isTrans || entry.getObject() instanceof JobGraph)
			{
				EngineMetaInterface meta = entry.getObject().getMeta();
				if (meta != null)
				{
					meta.setInternalKettleVariables();
				}
				if (spoon.getCoreObjectsState() != SpoonInterface.STATE_CORE_OBJECTS_SPOON)
				{
					spoon.refreshCoreObjects();
				}
			}
			
			if (entry.getObject() instanceof JobGraph) {
				((JobGraph)entry.getObject()).setFocus();
			} else if (entry.getObject() instanceof TransGraph) {
				((TransGraph)entry.getObject()).setFocus();
			}
			
			break;
		}
	}

	// Also refresh the tree
	spoon.refreshTree();
	spoon.setShellText(); // calls also enableMenus() and markTabsChanged()
	
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:41,代码来源:SpoonTabsDelegate.java

示例9: findTabForTransformation

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
/**
 * Finds the tab for the transformation that matches the metadata provided (either the file must be the same or the
 * repository id).
 *
 * @param trans
 *          Transformation metadata to look for
 * @return Tab with transformation open whose metadata matches {@code trans} or {@code null} if no tab exists.
 * @throws KettleFileException
 *           If there is a problem loading the file object for an open transformation with an invalid a filename.
 */
public TabMapEntry findTabForTransformation( TransMeta trans ) throws KettleFileException {
  // File for the transformation we're looking for. It will be loaded upon first request.
  FileObject transFile = null;
  for ( TabMapEntry entry : tabMap ) {
    if ( entry != null && !entry.getTabItem().isDisposed() ) {
      if ( trans.getFilename() != null && entry.getFilename() != null ) {
        // If the entry has a file name it is the same as trans iff. they originated from the same files
        FileObject entryFile = KettleVFS.getFileObject( entry.getFilename() );
        if ( transFile == null ) {
          transFile = KettleVFS.getFileObject( trans.getFilename() );
        }
        if ( entryFile.equals( transFile ) ) {
          return entry;
        }
      } else if ( trans.getObjectId() != null && entry.getObject() != null ) {
        EngineMetaInterface meta = entry.getObject().getMeta();
        if ( meta != null && trans.getObjectId().equals( meta.getObjectId() ) ) {
          // If the transformation has an object id and the entry shares the same id they are the same
          return entry;
        }
      }
    }
  }
  // No tabs for the transformation exist and are not disposed
  return null;
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:37,代码来源:SpoonTabsDelegate.java

示例10: renameTabs

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
/**
 * Rename the tabs
 */
public void renameTabs() {
  List<TabMapEntry> list = new ArrayList<TabMapEntry>( tabMap );
  for ( TabMapEntry entry : list ) {
    if ( entry.getTabItem().isDisposed() ) {
      // this should not be in the map, get rid of it.
      tabMap.remove( entry.getObjectName() );
      continue;
    }

    // TabItem before = entry.getTabItem();
    // PDI-1683: need to get the String here, otherwise using only the "before" instance below, the reference gets
    // changed and result is always the same
    // String beforeText=before.getText();
    //
    Object managedObject = entry.getObject().getManagedObject();
    if ( managedObject != null ) {
      if ( entry.getObject() instanceof AbstractGraph ) {
        AbstractMeta meta = (AbstractMeta) managedObject;
        String tabText = makeTabName( meta, entry.isShowingLocation() );
        entry.getTabItem().setText( tabText );
        String toolTipText = BaseMessages.getString( PKG, "Spoon.TabTrans.Tooltip", tabText );
        if ( entry.getObject() instanceof JobGraph ) {
          toolTipText = BaseMessages.getString( PKG, "Spoon.TabJob.Tooltip", tabText );
        }
        if ( Const.isWindows() && !Utils.isEmpty( meta.getFilename() ) ) {
          toolTipText += Const.CR + Const.CR + meta.getFilename();
        }
        entry.getTabItem().setToolTipText( toolTipText );
      }
    }
  }
  spoon.setShellText();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:37,代码来源:SpoonTabsDelegate.java

示例11: findJobGraphOfJob

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public JobGraph findJobGraphOfJob( JobMeta jobMeta ) {
  // Now loop over the entries in the tab-map
  for ( TabMapEntry mapEntry : spoon.delegates.tabs.getTabs() ) {
    if ( mapEntry.getObject() instanceof JobGraph ) {
      JobGraph jobGraph = (JobGraph) mapEntry.getObject();
      if ( jobGraph.getMeta().equals( jobMeta ) ) {
        return jobGraph;
      }
    }
  }
  return null;
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:13,代码来源:SpoonJobDelegate.java

示例12: tabSelected

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public void tabSelected( TabItem item ) {
  List<TabMapEntry> collection = spoon.delegates.tabs.getTabs();

  // See which core objects to show
  //
  for ( TabMapEntry entry : collection ) {
    if ( item.equals( entry.getTabItem() ) ) {
      // TabItemInterface itemInterface = entry.getObject();

      //
      // Another way to implement this may be to keep track of the
      // state of the core object tree in method
      // addCoreObjectsToTree()
      //
      if ( entry.getObject() instanceof TransGraph || entry.getObject() instanceof JobGraph ) {
        EngineMetaInterface meta = entry.getObject().getMeta();
        if ( meta != null ) {
          meta.setInternalKettleVariables();
        }
        if ( spoon.getCoreObjectsState() != SpoonInterface.STATE_CORE_OBJECTS_SPOON ) {
          spoon.refreshCoreObjects();
        }
      }
    }
  }

  // Also refresh the tree
  spoon.refreshTree();
  spoon.enableMenus();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:31,代码来源:SpoonTransformationDelegate.java

示例13: tabClose

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public boolean tabClose(TabItem item)
{
	// Try to find the tab-item that's being closed.
	List<TabMapEntry> collection = new ArrayList<TabMapEntry>();
	collection.addAll(tabMap);
	int idx = 0;
	
	boolean close = true;
	for (TabMapEntry entry : collection)
	{
		if (item.equals(entry.getTabItem()))
		{
			TabItemInterface itemInterface = entry.getObject();

			// Can we close this tab?
			if (!itemInterface.canBeClosed())
			{
				int reply = itemInterface.showChangedWarning();
				if (reply == SWT.YES)
				{
					close = itemInterface.applyChanges();
				} else
				{
					if (reply == SWT.CANCEL)
					{
						close = false;
					} else
					{
						close = true;
					}
				}
			}

			// Also clean up the log/history associated with this
			// transformation/job
			//                            
			if (close)
			{
				if (entry.getObject() instanceof TransGraph)
				{
					TransMeta transMeta = (TransMeta) entry.getObject().getManagedObject();
					spoon.delegates.trans.closeTransformation(transMeta);
					spoon.refreshTree();
					//spoon.refreshCoreObjects();
				} else if (entry.getObject() instanceof JobGraph)
				{
					JobMeta jobMeta = (JobMeta) entry.getObject().getManagedObject();
					spoon.delegates.jobs.closeJob(jobMeta);
					spoon.refreshTree();
					//spoon.refreshCoreObjects();
				} else if (entry.getObject() instanceof SpoonBrowser)
				{
					spoon.closeSpoonBrowser();
					spoon.refreshTree();
				}

				else if (entry.getObject() instanceof Composite)
				{
					Composite comp = (Composite) entry.getObject();
					if (comp != null && !comp.isDisposed())
						comp.dispose();
				}
			}
			
			break;
		}
		
		idx+=1;
	}
	
	return close;
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:73,代码来源:SpoonTabsDelegate.java

示例14: tabSelected

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public void tabSelected(TabItem item)
{
	ArrayList<TabMapEntry> collection = new ArrayList<TabMapEntry>(tabMap);

	// See which core objects to show
	//
	for (TabMapEntry entry : collection)
	{
		boolean isTrans = (entry.getObject() instanceof TransGraph);
		
		if (item.equals(entry.getTabItem()))
		{
			if (isTrans || entry.getObject() instanceof JobGraph)
			{
				EngineMetaInterface meta = entry.getObject().getMeta();
				if (meta != null)
				{
					meta.setInternalKettleVariables();
				}
				if (spoon.getCoreObjectsState() != SpoonInterface.STATE_CORE_OBJECTS_SPOON)
				{
					spoon.refreshCoreObjects();
				}
			}
			
			if (entry.getObject() instanceof JobGraph) {
				((JobGraph)entry.getObject()).setFocus();
			} else if (entry.getObject() instanceof TransGraph) {
				((TransGraph)entry.getObject()).setFocus();
			}
			
			break;
		}
	}

	// Also refresh the tree
	spoon.refreshTree();
	spoon.enableMenus();
	
	
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:42,代码来源:SpoonTabsDelegate.java

示例15: tabClose

import org.pentaho.di.ui.spoon.TabMapEntry; //导入方法依赖的package包/类
public boolean tabClose(TabItem item) throws KettleException
{
	// Try to find the tab-item that's being closed.
	List<TabMapEntry> collection = new ArrayList<TabMapEntry>();
	collection.addAll(tabMap);
	int idx = 0;
	
	boolean close = true;
	for (TabMapEntry entry : collection)
	{
		if (item.equals(entry.getTabItem()))
		{
			TabItemInterface itemInterface = entry.getObject();

			// Can we close this tab?
			if (!itemInterface.canBeClosed())
			{
				int reply = itemInterface.showChangedWarning();
				if (reply == SWT.YES)
				{
					close = itemInterface.applyChanges();
				} else
				{
					if (reply == SWT.CANCEL)
					{
						close = false;
					} else
					{
						close = true;
					}
				}
			}

			// Also clean up the log/history associated with this
			// transformation/job
			//                            
			if (close)
			{
				if (entry.getObject() instanceof TransGraph)
				{
					TransMeta transMeta = (TransMeta) entry.getObject().getManagedObject();
					spoon.delegates.trans.closeTransformation(transMeta);
					spoon.refreshTree();
					//spoon.refreshCoreObjects();
				} else if (entry.getObject() instanceof JobGraph)
				{
					JobMeta jobMeta = (JobMeta) entry.getObject().getManagedObject();
					spoon.delegates.jobs.closeJob(jobMeta);
					spoon.refreshTree();
					//spoon.refreshCoreObjects();
				} else if (entry.getObject() instanceof SpoonBrowser)
				{
					spoon.closeSpoonBrowser();
					spoon.refreshTree();
				}

				else if (entry.getObject() instanceof Composite)
				{
					Composite comp = (Composite) entry.getObject();
					if (comp != null && !comp.isDisposed())
						comp.dispose();
				}
			}
			
			break;
		}
		
		idx+=1;
	}
	
	return close;
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:73,代码来源:SpoonTabsDelegate.java


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