One approach would be to put a static method inside the JFrame class called getInstace()
that would return an instance of the JFrame class (not necessarily new instance) you can restirct the instance to be single. Once this instance is returned you can call a non-static method on it.
E.g.
balance = JFrame.getInstance().getBalance();