Create your own Dog Class.

As a minimum, include:
- At least three (3) PIVs
- At least two (2) constructors (one no-argument constructor, one two-argument)
- At least four (4) methods (at least 2 getters, and at least 2 setters)
- .toString()
- 2 static methods ( .P() and .PLN() )

Demonstrate with running code:
- Hardcode creation of at least 2 Dog objects, demonstrating both constructors
- Use each method at least once in your program.
- Use .toString() to print out the state of both objects after creation (use your static methods, e.g., .PLN() ).

Submit as .java source code