selectable.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 25 行

JAVA
25
字号
package org.jnode.wt.components;

/**
 * @author kishore
 */
public interface Selectable {
    /**
     * Insert the method's description here.
     * Creation date: (1/28/04 10:08:25 PM)
     */
    public boolean isSelected();

    /**
     * This method is used by ButtonGroup to set itself,
     * just like setParent() method call by Container;
     */
    void setButtonGroup(ButtonGroup bg);

    /**
     * Insert the method's description here.
     * Creation date: (1/28/04 10:08:25 PM)
     */
    public void setSelected(boolean b);
}

⌨️ 快捷键说明

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