本文整理汇总了Java中org.eclipse.swtbot.eclipse.finder.widgets.SWTBotPerspective类的典型用法代码示例。如果您正苦于以下问题:Java SWTBotPerspective类的具体用法?Java SWTBotPerspective怎么用?Java SWTBotPerspective使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SWTBotPerspective类属于org.eclipse.swtbot.eclipse.finder.widgets包,在下文中一共展示了SWTBotPerspective类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: openPerspective
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotPerspective; //导入依赖的package包/类
public static void openPerspective(SWTWorkbenchBot bot, String perspectiveLabel) {
SwtBotUtils.print("Opening Perspective: " + perspectiveLabel);
SWTBotShell shell = null;
try {
menu(bot, "Window").menu("Open Perspective").menu("Other...").click();
shell = bot.shell("Open Perspective");
bot.waitUntil(ActiveWidgetCondition.widgetMakeActive(shell));
shell.bot().table().select(perspectiveLabel);
shell.bot().button("OK").click();
bot.waitUntil(Conditions.shellCloses(shell));
} catch (Exception e) {
if (shell != null && shell.isOpen()) shell.close();
SwtBotUtils.printError("Couldn't open perspective '" + perspectiveLabel + "'\n"
+ "trying to activate already open perspective instead");
// maybe somehow the perspective is already opened (by another test before us)
SWTBotPerspective perspective = bot.perspectiveByLabel(perspectiveLabel);
perspective.activate();
}
SwtBotUtils.print("Opened Perspective: " + perspectiveLabel);
}
开发者ID:gwt-plugins,项目名称:gwt-eclipse-plugin,代码行数:26,代码来源:SwtBotMenuActions.java
示例2: resetToJavPerspective
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotPerspective; //导入依赖的package包/类
public void resetToJavPerspective() {
final SWTBotPerspective javaPerspective = bot.perspectiveById(JavaUI.ID_PERSPECTIVE);
javaPerspective.activate();
bot.waitUntil(new DefaultCondition() {
@Override
public boolean test() throws Exception {
return javaPerspective.isActive();
}
@Override
public String getFailureMessage() {
return JavaUI.ID_PERSPECTIVE + " has not become active in time";
}
});
}
开发者ID:gw4e,项目名称:gw4e.project,代码行数:16,代码来源:GW4EProject.java
示例3: psptvBtnDefault
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotPerspective; //导入依赖的package包/类
/**
* @return 透视图:默认布局;
*/
public SWTBotPerspective psptvBtnDefault() {
return bot.perspectiveByLabel(TsUIConstants
.getString("psptvBtnDefault"));
}
开发者ID:heartsome,项目名称:translationstudio8,代码行数:8,代码来源:TS.java
注:本文中的org.eclipse.swtbot.eclipse.finder.widgets.SWTBotPerspective类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论