convex.gui.components.BaseListComponent 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.JPanel;
import javax.swing.border.BevelBorder;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
@SuppressWarnings("serial")
public class BaseListComponent extends JPanel {
public BaseListComponent() {
setBorder(new CompoundBorder(new BevelBorder(BevelBorder.RAISED, null, null, null, null),
new EmptyBorder(2, 2, 2, 2)));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy