First, why is your JFormattedTextField called eatAtComboBox?
Second, casting a string to an integer like how you're doing won't always do what you expect. Use Integer.parseInt() instead.
To do what you want add an actionlistener to your start button and set the variable inside that actionlistener using:
eatFoodThreshold = Integer.parseInt(eatAtComboBox.getText());