Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 506a7acd authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- raised an exception for an error in the method name (summer school bug)

parent 879dee33
No related branches found
No related tags found
No related merge requests found
/*
* $Id$
*
* Copyright (C) INRIA Rhne-Alpes, 2003-2008
* Copyright (C) INRIA, 2003-2009
*
* 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
......@@ -86,11 +86,11 @@ public class StringDistAlignment extends DistanceAlignment implements AlignmentP
if ( f != null ) methodName = f.trim();
Class sClass = Class.forName("java.lang.String");
Class[] mParams = { sClass, sClass };
dissimilarity = Class.forName("fr.inrialpes.exmo.align.impl.method.StringDistances").getMethod( methodName, mParams );
dissimilarity = Class.forName("fr.inrialpes.exmo.ontosim.string.StringDistances").getMethod( methodName, mParams );
} catch (ClassNotFoundException e) {
e.printStackTrace();
e.printStackTrace(); // never happens
} catch (NoSuchMethodException e) {
e.printStackTrace();
throw new AlignmentException( "Unknown method for StringDistAlignment : "+(String)params.getParameter("stringFunction"), e );
}
// Initialize matrix
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment