// Last edited on 2000-08-31 01:39:25 by stolfi // Teste de Planta, PlantaImpl public class PlantaTeste extends Main { public static void main(String [] argv) { PlantaImpl p = new PlantaImpl(); try { p.carrega("unicamp"); Esquina[] esqs = p.esquinas(); Logradouro[] lgs = p.logradouros(); Servico[] svs = p.servicos(); Trecho[] trs = p.trechos(); for (int j = 0; j < svs.length; j++) { System.out.println(svs[j].nome()); } for (int j = 0; j < trs.length; j++) { System.out.println(trs[j]); } } catch(IOException e) { System.out.println(e); } } }