programmazione-java/src/CentroRicerca/ResearchCenterTester.java

23 lines
523 B
Java

package com.gmail.zurlo.michelef.scenari;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import com.gmail.zurlo.michelef.classi.ResearchCenter;
public class ResearchCenterTester {
public static void main(String[] args) throws FileNotFoundException {
Scanner sc = new Scanner(new File("Projects.txt"));
ResearchCenter rc = new ResearchCenter(sc);
rc.print(System.out);
System.out.println("*****");
rc.sortByName();
rc.print(System.out);
}
}