/**
* Main class, so you can have an example. You can put your own attribute names in parameter
*/
public static void main(String[] args) {
IFrame frame = new Frame();
String tmpDeviceName = null;
String tmpAttributeName = null;
if (args != null && args.length > 1) {
tmpDeviceName = args[0];
tmpAttributeName = args[1];
}
else {
tmpDeviceName = "tango/tangotest/titan";
tmpAttributeName = "ampli";
}
NumberScalarProgressBar f = new NumberScalarProgressBar();
f.setSize(300, 300);
f.setPreferredSize(f.getSize());
f.setDeviceName(tmpDeviceName);
f.setToolTipText(tmpDeviceName + "/" + tmpAttributeName);
f.setEntityName(tmpAttributeName);
f.setEnabled(true);
f.setConfirmation(false);
f.initDAO();
frame.setContentPane(f);
frame.setSize(640, 480);
frame.setTitle(f.getClass().getName());
frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}