Package lesson1

Source Code of lesson1.Fruits

package lesson1;

import lesson1.oop.Apple;
import lesson1.oop.Fruit;

/**
* User: gkislin
* Date: 07.04.2014
*/
public class Fruits {
    public static void main(String[] args) {
        Fruit fruit = new Apple();
        System.out.println(fruit.toString());
    }
}
TOP

Related Classes of lesson1.Fruits

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.