69 lines
2.1 KiB
Java
69 lines
2.1 KiB
Java
/*
|
|
* Copyright (c) 2014 Paul Scherrer Institute. All rights reserved.
|
|
*/
|
|
|
|
import ch.psi.pshell.dev.Motor;
|
|
import ch.psi.pshell.plot.LinePlotBase;
|
|
import ch.psi.pshell.plot.LinePlotJFree;
|
|
import ch.psi.pshell.plot.LinePlotSeries;
|
|
import ch.psi.pshell.plot.Plot;
|
|
import ch.psi.pshell.swing.MotorPanel;
|
|
import ch.psi.pshell.ui.App;
|
|
import ch.psi.utils.swing.MonitoredPanel;
|
|
import ch.psi.pshell.ui.Panel;
|
|
import ch.psi.utils.swing.SwingUtils;
|
|
import ch.psi.wsaf.ApplicationStateException;
|
|
import ch.psi.wsaf.Task;
|
|
import ch.psi.wsaf.TaskRunMode;
|
|
import ch.psi.wsaf.TaskRunningException;
|
|
import java.util.HashMap;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import javax.swing.JPanel;
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public class TestingList extends Panel {
|
|
|
|
@Override
|
|
protected JPanel create() {
|
|
return new NetbeansPluginPanel();
|
|
}
|
|
|
|
public class NetbeansPluginPanel extends MonitoredPanel {
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
|
private void initComponents() {
|
|
|
|
jButton1 = new javax.swing.JButton();
|
|
|
|
jButton1.setText("jButton1");
|
|
|
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
|
this.setLayout(layout);
|
|
layout.setHorizontalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGap(33, 33, 33)
|
|
.addComponent(jButton1)
|
|
.addContainerGap(708, Short.MAX_VALUE))
|
|
);
|
|
layout.setVerticalGroup(
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
.addGroup(layout.createSequentialGroup()
|
|
.addGap(42, 42, 42)
|
|
.addComponent(jButton1)
|
|
.addContainerGap(606, Short.MAX_VALUE))
|
|
);
|
|
}// </editor-fold>//GEN-END:initComponents
|
|
|
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
|
private javax.swing.JButton jButton1;
|
|
// End of variables declaration//GEN-END:variables
|
|
}
|
|
}
|