Simple Object Field 2
Create a class called Simple
that stores a single String
value using a field named data
.
Simple should implement a function called setData
that accepts a single String
and changes the saved
value. (It should not return a value.)
Simple should also implement a function called getData
that returns the saved value.
Note that you should include public
before your class definition for this problem.
We've provided starter code that does that.
If that doesn't fully make sense yet, don't worry.
It will soon.
public class Simple {}