Package t3

Source Code of t3.Importer

package t3;

import t0.ExportedClass;
import t0.alsoexported.AlsoExportedClass;
import t0.internal.NotExportedClass;

public class Importer
{
  public void doSomething()
  {
    ExportedClass e = new ExportedClass();
    AlsoExportedClass a = new AlsoExportedClass();
    NotExportedClass n = new NotExportedClass();

    e.doSomething();
    a.doSomething();
    n.doSomething();
  }
}
TOP

Related Classes of t3.Importer

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.