//Salva o grafo no banco public void criarGrafo() { GrafoDAO dao = new GrafoDAO(); try { dao.criarGrafo(this.nome, this.width, this.height); } catch (Exception ex) { throw ex; } }
public void abrirGrafo() { GrafoDAO dao = new GrafoDAO(); GrafoPlus grafoAux; try { grafoAux = dao.abrirGrafo(this.nome); this.idGrafo = grafoAux.idGrafo; this.width = grafoAux.width; this.height = grafoAux.height; this.vertices = grafoAux.vertices; this.arestas = grafoAux.arestas; } catch (Exception ex) { throw ex; } }