To understand the full picture, here is my assignment:
Write an inheritance hierarchy for class Quadrilateral, Trapezoid, Parallelogram, Rectangle, and Square. Use Quadrilateral as the super class of the hierarchy. Make the hierarchy as deep I.e., as many levels) as possible. Specify the instance variables and methods for each class. The private data of the Quadrilateral should be the x-y coordinate pairs for the four end-points of the Quadrilateral. Write a program that instantiate objects of you classes and outputs each object area (except Quadrilateral)
When I try to run this I get:
quadrilateral.Quadrilateral class wasn't found in the Quadrilateral project
Select main class:
"No main class found".
My classes are all separate .java files within my Quadrilateral
Java application project
I have a hard time understanding how to use NetBeans, but it is what I am required to use.
Thanks