?? retireresources.java
字號:
/**
@version 1.21 2001-08-27
@author Cay Horstmann
*/
import java.util.*;
import java.awt.*;
/**
These are the English non-string resources for the retirement
calculator.
*/
public class RetireResources
extends java.util.ListResourceBundle
{
public Object[][] getContents() { return contents; }
static final Object[][] contents =
{
// BEGIN LOCALIZE
{ "colorPre", Color.blue },
{ "colorGain", Color.white },
{ "colorLoss", Color.red }
// END LOCALIZE
};
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -