Package launcher

Source Code of launcher.Starter

package launcher;

import test.Child;
import test.Parent;
import test.Printer;

public class Starter
{
 
  public static void main(String[] args)
  {
    Printer printer = new Printer();
    printer.print(new Parent());
    printer.print(new Child());
  }
 
}
TOP

Related Classes of launcher.Starter

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.