com.github.athi.athifx.gui.menu.group.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athi-fx-gui Show documentation
Show all versions of athi-fx-gui Show documentation
AthiFX project for creating JavaFX simple application GUI.
The newest version!
package com.github.athi.athifx.gui.menu.group;
import com.github.athi.athifx.gui.font_awesome.FontAwesome;
/**
* Created by Athi
*/
public interface Group {
long id();
String caption();
FontAwesome icon();
default String itemId() {
return id() + "_" + caption();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy