本文整理匯總了Java中net.sf.freecol.client.gui.dialog.SelectAmountDialog類的典型用法代碼示例。如果您正苦於以下問題:Java SelectAmountDialog類的具體用法?Java SelectAmountDialog怎麽用?Java SelectAmountDialog使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SelectAmountDialog類屬於net.sf.freecol.client.gui.dialog包,在下文中一共展示了SelectAmountDialog類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: showSelectAmountDialog
import net.sf.freecol.client.gui.dialog.SelectAmountDialog; //導入依賴的package包/類
/**
* Display the select-amount dialog.
*
* @param goodsType The {@code GoodsType} to select an amount of.
* @param available The amount of goods available.
* @param defaultAmount The amount to select to start with.
* @param needToPay If true, check the player has sufficient funds.
* @return The amount selected.
*/
public int showSelectAmountDialog(GoodsType goodsType, int available,
int defaultAmount, boolean needToPay) {
FreeColDialog<Integer> fcd
= new SelectAmountDialog(freeColClient, frame, goodsType, available,
defaultAmount, needToPay);
Integer result = showFreeColDialog(fcd, null);
return (result == null) ? -1 : result;
}