Class Square

java.lang.Object
  |
  +--Shape
        |
        +--Rectangle
              |
              +--Square
All Implemented Interfaces:
java.lang.Comparable

public class Square
extends Rectangle


Constructor Summary
Square(double side)
          costruisce un quadrato a partire dalla lunghezza del suo lato.
 
Method Summary
 void draw()
          scrive un messaggio che identifica la figura.
 
Methods inherited from class Rectangle
calculateArea, calculatePerimeter, getHeight, getWidth
 
Methods inherited from class Shape
compareTo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Square

public Square(double side)
costruisce un quadrato a partire dalla lunghezza del suo lato.

Parameters:
side - la lunghezza del lato del quadrato.
Method Detail

draw

public void draw()
Description copied from class: Shape
scrive un messaggio che identifica la figura.

Overrides:
draw in class Rectangle