public class ThreeDimensionalShape extends Shape
{
    /**
	 *  explicit value constructor
	 */
	 public ThreeDimensionalShape(String name)
	 {
           super(name);	     	 
	 }   
	 
		  
} 	