Newer
Older
restamp-gui / src / main / java / osm / surveyor / matchtime / gui / PanelAction.java
@haya4 haya4 on 7 May 2020 210 bytes from ReStamp v3.1
package osm.surveyor.matchtime.gui;

public interface PanelAction {
    void openAction();
    
    /**
     * 入力条件が満たされているかどうか
     * @return 
     */
    boolean isEnable();
}