use of com.willwinder.universalgcodesender.uielements.toolbars.SendStatusLine in project Universal-G-Code-Sender by winder.
the class SendStatusLineService method getStatusLineElement.
@Override
public Component getStatusLineElement() {
BackendAPI backend = CentralLookup.getDefault().lookup(BackendAPI.class);
JPanel panel = new JPanel();
panel.add(new SendStatusLine(backend));
return panel;
}
Aggregations