Mentions légales du service

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

- corrected small bug (uri1 taken twice)

parent 9b12fb5d
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ public class HTMLRendererVisitor implements AlignmentVisitor
}
public void visit( Alignment align ) throws AlignmentException {
alignment = align;
//alignment = align;
writer.print("<html>\n<head></head>\n<body>\n");
writer.print("<h1></h1>\n");
writer.print("<h2>Alignment metadata</h2>\n");
......@@ -82,7 +82,7 @@ public class HTMLRendererVisitor implements AlignmentVisitor
if ( align.getFile1() != null )
writer.print("<tr><td>ontofile1</td><td><a href=\""+align.getFile1().toString()+"\">"+align.getFile1().toString()+"</a></td></tr>\n" );
if ( align.getFile2() != null )
writer.print("<tr><td>ontofile1</td><td><a href=\""+align.getFile2().toString()+"\">"+align.getFile2().toString()+"</a></td></tr>\n" );
writer.print("<tr><td>ontofile2</td><td><a href=\""+align.getFile2().toString()+"\">"+align.getFile2().toString()+"</a></td></tr>\n" );
writer.print("<tr><td>level</td><td>"+align.getLevel()+"</td></tr>\n" );
writer.print("<tr><td>type</td><td>"+align.getType()+"</td></tr>\n" );
// Get the keys of the parameter
......
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