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


Java TransGraph.isExecutionResultsPaneVisible方法代码示例

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


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

示例1: showExpandedContent

import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
/**
 * showExpandedContent( TransGraph graph )
 * 
 * @param graph
 *          TransGraph to create the web browser for. If the wev browser hasn't been created this will create one.
 *          Else it will just bring the web browser associated to this TransGraph to the top.
 */
public static void showExpandedContent( TransGraph graph ) {
  if ( graph == null ) {
    return;
  }
  Browser browser = getExpandedContentForTransGraph( graph );
  if ( browser == null ) {
    return;
  }
  if ( !isVisible( graph ) ) {
    maximizeExpandedContent( browser );
  }
  if ( Const.isOSX() && graph.isExecutionResultsPaneVisible() ) {
    graph.extraViewComposite.setVisible( false );
  }
  browser.moveAbove( null );
  browser.getParent().layout( true );
  browser.getParent().redraw();
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:26,代码来源:ExpandedContentManager.java

示例2: attachActiveTrans

import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
/**
 * Finds the last active transformation in the running job to the opened transMeta
 * 
 * @param transGraph
 * @param jobEntryCopy
 */
private void attachActiveTrans(TransGraph transGraph, TransMeta newTrans, JobEntryCopy jobEntryCopy) {
 if (job!=null && transGraph!=null) {
  Trans trans = spoon.findActiveTrans(job, jobEntryCopy);
  transGraph.setTrans(trans);
  if (!transGraph.isExecutionResultsPaneVisible()) {
	  transGraph.showExecutionResults();
  }
  transGraph.setControlStates();
 }
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:17,代码来源:JobGraph.java

示例3: attachActiveTrans

import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
/**
 * Finds the last active transformation in the running job to the opened transMeta
 *
 * @param transGraph
 * @param jobEntryCopy
 */
private void attachActiveTrans( TransGraph transGraph, TransMeta newTrans, JobEntryCopy jobEntryCopy ) {
  if ( job != null && transGraph != null ) {
    Trans trans = spoon.findActiveTrans( job, jobEntryCopy );
    transGraph.setTrans( trans );
    if ( !transGraph.isExecutionResultsPaneVisible() ) {
      transGraph.showExecutionResults();
    }
    transGraph.setControlStates();
  }
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:17,代码来源:JobGraph.java

示例4: isExecutionResultsPaneVisible

import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
public boolean isExecutionResultsPaneVisible() {
  TransGraph transGraph = getActiveTransGraph();
  return (transGraph != null) && (transGraph.isExecutionResultsPaneVisible());
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:5,代码来源:Spoon.java

示例5: isExecutionResultsPaneVisible

import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
public boolean isExecutionResultsPaneVisible() {
  TransGraph transGraph = getActiveTransGraph();
  return ( transGraph != null ) && ( transGraph.isExecutionResultsPaneVisible() );
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:5,代码来源:Spoon.java


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