public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ENTER) {
this.result.setText("");
this.createQueue.setEditable(false);
this.runableCodeListMyQueues =
new RunnableReadQueue(this.createQueue,
this.queueCode, this.read, this.result);
Thread thread = new Thread(this.runableCodeListMyQueues);
thread.start();
}
}