write the following OOP program in java:
- Class name: Human, contains the following:
properties of the human: name, eye color, skin color, hair color, gender
methods of human: breath, talk, walk
getters and setters for all properties of human
constructors: 1 no-argument constructor, and 1 full-argument constructor
static property: define the the counter property, which increases by 1 in each instance initialization.
- create 2 objects of Human class, and initializa an instances for them , initialize the first instance using the no-argument constrcutor, and the second instance using the full-argument constructor.
class Creature:
Human:
Animal:
Class OOP_Human: