How to implement checkbox list java
问题 Probably a noob question, but im new to java. I have a need for a checkbox list which I found is not supported in swing, but I found this custom control here http://www.devx.com/tips/Tip/5342 So I created a class file named CheckBoxList, and copied the code from the link into it: import javax.swing.*; import javax.swing.border.*; import java.awt.*; import java.awt.event.*; public class CheckBoxList extends JList { protected static Border noFocusBorder = new EmptyBorder(1, 1, 1, 1); public