> Having a problem in a beginning Java class. Write a basic Java program that will implement one class to store a state of

Having a problem in a beginning Java class. Write a basic Java program that will implement one class to store a state of

Posted at: 2014-12-18 
The class should have one property to store a textual name of the state. When a object of this class is created the initial state should be "Open". 1) Class should have one method next() which will move the project to the next step in the sequence: Open - In progress - Closed. If next method is called for a project in the Closed state it should do nothing. Class should have a method close() which will move the project into the Closed state. 3) Class should have a method print() that will output a current state of the project.