There is a Person
class, I have to pass it to the PersonStatus
class so that it contains all the fields of the Person
class and so I can add new fields that relate only to the PersonStatus
class.
I suggested that you can do so:
class Person{} class PersonStatus{ PersonStatus pst = new PersonStatus(Person); }
But it swears
"Person cannot be resolved"