本文整理汇总了Java中net.sf.freecol.client.gui.panel.Utility.localizedLabel方法的典型用法代码示例。如果您正苦于以下问题:Java Utility.localizedLabel方法的具体用法?Java Utility.localizedLabel怎么用?Java Utility.localizedLabel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.sf.freecol.client.gui.panel.Utility
的用法示例。
在下文中一共展示了Utility.localizedLabel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ReportReligiousPanel
import net.sf.freecol.client.gui.panel.Utility; //导入方法依赖的package包/类
/**
* The constructor that will add the items to this panel.
*
* @param freeColClient The {@code FreeColClient} for the game.
*/
public ReportReligiousPanel(FreeColClient freeColClient) {
super(freeColClient, "reportReligionAction");
final Font font = FontLibrary.createFont(FontLibrary.FontType.NORMAL,
FontLibrary.FontSize.SMALLER, Font.BOLD,
freeColClient.getGUI().getImageLibrary().getScaleFactor());
final Player player = getMyPlayer();
final Specification spec = getSpecification();
reportPanel.setLayout(new MigLayout("wrap 6, fill", "center"));
for (GoodsType gt : spec.getImmigrationGoodsTypeList()) {
JLabel crosses = Utility.localizedLabel(gt);
crosses.setFont(font);
reportPanel.add(crosses, SPAN_SPLIT_2);
FreeColProgressBar progressBar = new FreeColProgressBar(gt, 0,
player.getImmigrationRequired(), player.getImmigration(),
player.getTotalImmigrationProduction());
reportPanel.add(progressBar, "span");
for (Colony colony : freeColClient.getMySortedColonies()) {
WorkLocation wl = first(colony.getWorkLocationsForProducing(gt));
if (wl instanceof Building) {
reportPanel.add(createColonyButton(colony),
"split 2, flowy");
BuildingPanel bp = new BuildingPanel(getFreeColClient(),
(Building)wl);
bp.initialize();
reportPanel.add(bp);
}
}
}
}
示例2: getNameAsJlabel
import net.sf.freecol.client.gui.panel.Utility; //导入方法依赖的package包/类
@Override
public JLabel getNameAsJlabel() {
return Utility.localizedLabel(getLocationName(this));
}