FileDocCategorySizeDatePackage
Earth.javaAPI DocExample434Tue Dec 12 18:58:16 GMT 2000None

Earth

public class Earth extends Planet

Fields Summary
Constructors Summary
Methods Summary
public static voidhide()

        System.out.println("The hide method in Earth.");
    
public static voidmain(java.lang.String[] args)

        Earth myEarth = new Earth();
        Planet myPlanet = (Planet)myEarth;
        myPlanet.hide();                   
        myPlanet.override();
    
public voidoverride()

        System.out.println("The override method in Earth.");