m_frameTumba = new Tumba();
m_frameTumba.setTitle("Tumba");
m_frameTumba.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
try
{
TumbaModel model = new TumbaModel();
model.setBeamLineEnergyDeviceName(beamLineEnergyDeviceName);
model.setTumbaDeviceName(getDeviceName());
m_frameTumba.setModel(model);
}
catch (Exception e){
JOptionPane.showMessageDialog(null,e.getMessage());
}