
no.tornado.databinding.status.JLabelStatusMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinding Show documentation
Show all versions of databinding Show documentation
Swing Data Binding is a powerful, fast, light and simple data binding framework for Java.
The newest version!
package no.tornado.databinding.status;
import javax.swing.*;
public class JLabelStatusMonitor implements StatusMonitor {
private JLabel label;
public JLabelStatusMonitor(JLabel label) {
this.label = label;
}
public static JLabelStatusMonitor create(JLabel label) {
return new JLabelStatusMonitor(label);
}
public void clearStatus() {
label.setText(null);
}
public void setStatus(String message) {
label.setText(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy