本文整理汇总了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();
}
示例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();
}
}
示例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();
}
}
示例4: isExecutionResultsPaneVisible
import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
public boolean isExecutionResultsPaneVisible() {
TransGraph transGraph = getActiveTransGraph();
return (transGraph != null) && (transGraph.isExecutionResultsPaneVisible());
}
示例5: isExecutionResultsPaneVisible
import org.pentaho.di.ui.spoon.trans.TransGraph; //导入方法依赖的package包/类
public boolean isExecutionResultsPaneVisible() {
TransGraph transGraph = getActiveTransGraph();
return ( transGraph != null ) && ( transGraph.isExecutionResultsPaneVisible() );
}