📄 menuitem.java
字号:
package org.j4me.ui;
/**
* Implementing classes can be used as menu choices in a <code>Menu</code>.
*/
public interface MenuItem
{
/**
* @return The text displayed by the menu.
*/
public String getText ();
/**
* Called when the user selects this choice from the menu.
*/
public void onSelection ();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -