Newer
Older
restamp / src / main / java / osm / surveyor / matchtime / gui / PanelAction.java
@haya4 haya4 on 26 Jan 2020 210 bytes Restamp
package osm.surveyor.matchtime.gui;

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