convex.gui.actor.ArgBox 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
The newest version!
package convex.gui.actor;
import java.awt.Dimension;
import javax.swing.JTextField;
import convex.gui.utils.Toolkit;
@SuppressWarnings("serial")
public class ArgBox extends JTextField {
public ArgBox() {
setFont(Toolkit.MONO_FONT);
this.setPreferredSize(new Dimension(300,30));
}
}