Finger Exercise: Load your saved program entry.java into
the Definitions window of DrJava. Add the following definition
of a static field
static Entry sample = new("Matthias","DH 3102","x 5732");to the Entry class; its order to relative other members does not matter. Then evaluate the following expressions in the Interactions window:
Did you get the results that you expected? Note that you did not create an instance of the Entry class in the Interactions window.Entry.sample.getName() Entry.sample.getAddress() Entry.sample.getPhone()