Java tutorial
package fr.inria.maestro.lga; /* * Initial Software by Marina Sokol and Alexey Mishenin, * Copyright Inria (MAESTRO research team), All Rights Reserved, 2009-2014. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 3 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see <http://www.gnu.org/licenses/>. */ import fr.inria.maestro.lga.clustering.IClustering; import fr.inria.maestro.lga.clustering.impl.ClusteringUtils; import fr.inria.maestro.lga.graph.io.loaders.MatLabLoader; import fr.inria.maestro.lga.graph.model.IGraph; import org.apache.commons.io.FileUtils; import java.io.File; import java.io.IOException; public class TestUtils { public static IGraph loadMatLabGraph(final String path) throws IOException { final File graphFile = FileUtils.toFile(TestUtils.class.getResource(path)); return new MatLabLoader().load(graphFile); } public static IClustering loadClustering(final String path) throws IOException { final File clusteringFile = FileUtils.toFile(TestUtils.class.getResource(path)); return ClusteringUtils.loadFromFile(clusteringFile); } }