retireresources_de.java

来自「sun公司开发的,java2核心技术,卷II:高级性能,包括一系列的高级java」· Java 代码 · 共 32 行

JAVA
32
字号
/**
 * @version 1.2 1999-10-13
 * @author Cay Horstmann
 */

import java.util.*;
import java.awt.*;

public class RetireResources_de
   extends java.util.ListResourceBundle
{  public Object[][] getContents() { return contents; }
   static final Object[][] contents =
   {  // BEGIN LOCALIZE
      { "language", "Sprache" },
      { "computeButton", "Rechnen" },
      { "savings", "Vorherige Ersparnisse" },
      { "contrib", "J鋒rliche Einzahlung" },
      { "income", "Einkommen nach Ruhestand" },
      { "currentAge", "Jetziges Alter" },
      { "retireAge", "Ruhestandsalter" },
      { "deathAge", "Lebenserwartung" },
      { "inflationPercent", "Inflation" },
      { "investPercent", "Investitionsgewinn" },
      { "retire", "Alter: {0,number} Guthaben: {1,number,currency}" },
      { "colorPre", Color.yellow },
      { "colorGain", Color.black },
      { "colorLoss", Color.red }

      // END LOCALIZE
   };
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?