Package es.uma.ama.maudeWorkstationGUI.ui.graph

Examples of es.uma.ama.maudeWorkstationGUI.ui.graph.Graph


    */
    public DrawingArea(GraphGUI controller) {
        final GraphGUI gui = controller;

        // Creo un Graph
        graph = new Graph();

        // Creo los rect�ngulos vacio.
        //rectangulos = new HashMap();

        // Formato de impresi�n de p�gina por defecto
View Full Code Here


        return Printable.PAGE_EXISTS;
    }

    //** Crea un nuevo grafo en el area
    public void newGraph() {
        graph = new Graph();
        graph.isDirected = true;
        graph.weightedNodes = false;
        graph.weightedEdges = false;
        nextNodeIndex = 1;
        startNode=null;
View Full Code Here

TOP

Related Classes of es.uma.ama.maudeWorkstationGUI.ui.graph.Graph

Copyright © 2018 www.massapicom. 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.