本文整理匯總了Java中org.eclipse.swtbot.swt.finder.widgets.SWTBotList類的典型用法代碼示例。如果您正苦於以下問題:Java SWTBotList類的具體用法?Java SWTBotList怎麽用?Java SWTBotList使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SWTBotList類屬於org.eclipse.swtbot.swt.finder.widgets包,在下文中一共展示了SWTBotList類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getItemCount
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* Gets the item count.
*
* @param control
* the control
* @return the item count
*/
private static int getItemCount(final AbstractSWTBotControl<?> control) {
int itemCount;
if (control instanceof SWTBotCCombo) {
itemCount = ((SWTBotCCombo) control).itemCount();
} else if (control instanceof SWTBotList) {
itemCount = ((SWTBotList) control).itemCount();
} else if (control instanceof SWTBotCombo) {
itemCount = ((SWTBotCombo) control).itemCount();
} else {
throw new WrappedException("Control not supported", null);
}
return itemCount;
}
示例2: lstTgtLangAvailable
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* @return 列表:可選目標語言;
*/
public SWTBotList lstTgtLangAvailable() {
return dlgBot.list();
}
示例3: lstTgtLangSelected
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* @return 列表:已選目標語言;
*/
public SWTBotList lstTgtLangSelected() {
return dlgBot.list(1);
}
示例4: lstWLblCustomFilter
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* @return 列表:自定義過濾規則;
*/
public SWTBotList lstWLblCustomFilter() {
return dialogBot.listWithLabel(TsUIConstants.getString("lstWLblCustomFilter"));
}
示例5: lstSrcFile
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* @return ;
*/
public SWTBotList lstSrcFile() {
return dialogBot.list();
}
示例6: listWithLabel
import org.eclipse.swtbot.swt.finder.widgets.SWTBotList; //導入依賴的package包/類
/**
* @param bot
* 對話框的 SWTBot 對象
* @param labelKey
* 列表的文字標簽
* @return
*/
public static SWTBotList listWithLabel(SWTBot bot, String labelKey) {
return bot.listWithLabel(getString(labelKey));
}