OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 156 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 156 Rev 174
Line 51... Line 51...
51
 
51
 
52
    public NumericTextField() {
52
    public NumericTextField() {
53
        this(15);
53
        this(15);
54
    }
54
    }
55
 
55
 
56
    private NumericTextField(int columns) {
56
    public NumericTextField(int columns) {
57
        super(columns);
57
        super(columns);
58
 
58
 
59
        this.supp = new PropertyChangeSupport(this);
59
        this.supp = new PropertyChangeSupport(this);
60
        this.gained = false;
60
        this.gained = false;
61
        this.getDocument().addDocumentListener(new SimpleDocumentListener() {
61
        this.getDocument().addDocumentListener(new SimpleDocumentListener() {