I'm having issues with the abstract class idea...I've attempted to use Eclipse, but this time the IDE is just messing it up.
I've got the files uploaded.
They should be attempted to be compiled as this
1. Container
2. Base Container
3. Height, and color exception
4. Round and square containers
5. client for containers
I have the files uploaded here http://bit.ly/nDiObk
Here is the error I'm getting
ClientForContainers.java:19: SquareBaseContainer is abstract; cannot be instantiated
BaseContainer aContainer = new SquareBaseContainer(10.0);
^
ClientForContainers.java:31: RoundBaseContainer is abstract; cannot be instantiated
aContainer = new RoundBaseContainer(10.0);