Ejemplo n.º 1
0
 /**
  * constructor
  *
  * @param writable boolean
  */
 public ProbeButton(SessionShare sshare, ButtonIF vif, String typ) {
   super(sshare, vif, typ);
   setHorizontalTextPosition(CENTER);
   setVerticalTextPosition(BOTTOM);
   setState(WRONG_PROBE);
   setProbeName("probe 3");
   probeThread = new Thread(this);
   probeThread.setName("ProbeButton");
   probeThread.start();
 } // ProbeButton()