D:\Users\tomas\Documents\NetBeansProjects\PrikladGrafy\src\prikladgrafy\PrikladGrafy.java |
1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * and open the template in the editor. 5 */ 6 package prikladgrafy; 7 8 import java.io.FileNotFoundException; 9 10 /** 11 * 12 * @author tomas 13 */ 14 public class PrikladGrafy { 15 16 /** 17 * @param args the command line arguments 18 * @throws java.io.FileNotFoundException 19 */ 20 public static void main(String[] args) throws FileNotFoundException 21 { 22 Graf g = Graf.nacitajSubor("D:\\PRAC\\Skola\\Grafy\\pr1.hrn"); 23 g.printInfo(); 24 } 25 26 } 27