Package com.tagtraum.perf.gcviewer.imp

Examples of com.tagtraum.perf.gcviewer.imp.DataReaderFacade


        this.modelChartAndDetailsPanel.addTab(LocalisationHelper.getString("data_panel_tab_details"), modelDetailsScrollPane);
       
        this.viewBar = new ViewBar(this);
        this.propertyChangeSupport = new SwingPropertyChangeSupport(this);
        this.textAreaLogHandler = new TextAreaLogHandler();
        dataReaderFacade = new DataReaderFacade();
        final GCModel model = dataReaderFacade.loadModel(url, true, gcDocument);
        setModel(model);
        // TODO delete
        model.printDetailedInformation();
    }
View Full Code Here


    }

    private void export(String gcFilename, String summaryFilePath, String chartFilePath, DataWriterType type)
            throws IOException, DataReaderException, IllegalArgumentException {
       
        DataReaderFacade dataReaderFacade = new DataReaderFacade();
        GCModel model = dataReaderFacade.loadModel(gcFilename, false, null);

        exportType(model, summaryFilePath, type);
        if (chartFilePath != null)
            renderChart(model, chartFilePath);
    }
View Full Code Here

TOP

Related Classes of com.tagtraum.perf.gcviewer.imp.DataReaderFacade

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.