19 lines
534 B
Java
19 lines
534 B
Java
import javax.swing.text.PlainDocument;
|
|
import javax.swing.text.AttributeSet;
|
|
import javax.swing.text.BadLocationException;
|
|
|
|
public class JTextFieldCharLimit extends PlainDocument
|
|
{
|
|
private int max;
|
|
JTextFieldCharLimit(int max) {
|
|
super();
|
|
this.max = max;
|
|
}
|
|
public void insertString(int offset, String text, AttributeSet attr) throws BadLocationException {
|
|
if (text == null)
|
|
return;
|
|
if ((getLength() + text.length()) <= max) {
|
|
super.insertString(offset, text, attr);
|
|
}
|
|
}
|
|
} |