convex.gui.components.CodeLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-gui Show documentation
Show all versions of convex-gui Show documentation
Convex desktop GUI and test applications
package convex.gui.components;
import javax.swing.JTextArea;
import convex.gui.utils.Toolkit;
@SuppressWarnings("serial")
public class CodeLabel extends JTextArea {
public CodeLabel(String text) {
this.setText(text);
this.setBackground(null);
this.setEditable(false);
this.setFont(Toolkit.SMALL_MONO_FONT);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy