本文整理汇总了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;
}