
io.github.dheid.fontchooser.FontContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fontchooser Show documentation
Show all versions of fontchooser Show documentation
A Java Swing Component to choose a font according to the list of available font families, styles and
sizes.
The newest version!
package io.github.dheid.fontchooser;
import java.awt.Font;
/**
* Created by dheid on 4/1/17.
*/
public interface FontContainer {
String getSelectedStyle();
float getSelectedSize();
String getSelectedFamily();
Font getSelectedFont();
void setSelectedFont(Font font);
void setPreviewFont(Font font);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy