this.createQueue.setEditable(true);
this.buttonLoad.setText("Running..");
}
if (e.getActionCommand().equals("2")) {
this.buttonDelete.setText("Running");
this.runnableCodeDequeue = new RunnableDeleteQueue(this.createQueue, this.queueCode, this.read,
this.result, this.buttonDelete);
Thread thread2 = new Thread(this.runnableCodeDequeue);
thread2.start();
}
}