}
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);
}