All Downloads are FREE. Search and download functionalities are using the official Maven repository.

convex.gui.components.CodeLabel Maven / Gradle / Ivy

There is a newer version: 0.7.15
Show newest version
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