private JTextField getTextField_Name() {
   if (textField_Name == null) {
     textField_Name = new JTextField();
     textField_Name.setBounds(91, 32, 164, 21);
     textField_Name.setColumns(10);
   }
   textField_Name.setText(state.getName());
   return textField_Name;
 }