(String text)
| 24 | } |
| 25 | |
| 26 | public void setText(String text) { |
| 27 | this.textPane.setText(text); |
| 28 | if ("".equals(text)) { |
| 29 | this.remove(this.textPane); |
| 30 | this.setBorder(null); |
| 31 | } else { |
| 32 | this.add(this.textPane); |
| 33 | var borderColor = UIManager.getColor("Component.borderColor"); |
| 34 | this.setBorder(new MatteBorder(1, 0, 0, 0, borderColor)); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | public String getText() { |
| 39 | return this.textPane.getText(); |