コード例 #1
0
ファイル: AbstractTab.java プロジェクト: bungaca/abstools
 /** @return the product name, or null if the base product is selected. */
 protected String getSelectedProductName() {
   final int index = productDropDown.getSelectionIndex();
   if (index <= 0) /* base is at index 0 */ return null;
   return productDropDown.getItem(index);
 }
コード例 #2
0
ファイル: AbstractTab.java プロジェクト: bungaca/abstools
 protected String getSelectedProjectName() {
   return projectDropDown.getItem(projectDropDown.getSelectionIndex());
 }