From 349413e28d7816d7e517a50856083017842baecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssia=20Trojahn=20dos=20Santos?= <cassia.trojahn@irit.fr> Date: Mon, 27 Sep 2010 12:20:02 +0000 Subject: [PATCH] --- html/tutorial/tutorial5/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/html/tutorial/tutorial5/index.html b/html/tutorial/tutorial5/index.html index 68e8a370..a793cf44 100644 --- a/html/tutorial/tutorial5/index.html +++ b/html/tutorial/tutorial5/index.html @@ -117,7 +117,8 @@ public class AlignmentWSImpl implements AlignmentWS { <p> The method <tt>align</tt> must implement the matching process. -The easiest way to do this is to implement the <a href="http://alignapi.gforge.inria.fr/">Alignment API</a> (see details in <a href="http://alignapi.gforge.inria.fr/tutorial/tutorial3/">how to extend the Alignment API with a new matcher</a>). Basically, you need to implement the <tt>AlignmentProcess</tt> interface (method <tt>align</tt>) and extend the <tt>URIAlignment</tt> class (<a href="../tutorial3/MyAlignment.java">MyAlignment.java</a>): +The easiest way to do this is to implement the <a href="http://alignapi.gforge.inria.fr/">Alignment API</a> (see details in <a href="http://alignapi.gforge.inria.fr/tutorial/tutorial3/">how to extend the Alignment API with a new matcher</a>). Basically, you need to implement the <tt>AlignmentProcess</tt> interface (method <tt>align</tt>) and extend the <tt>URIAlignment</tt> class (<a href="MyAlignment.java">MyAlignment.java</a>): + </p> <div class="fragment"> @@ -142,6 +143,9 @@ public class MyAlignment extends URIAlignment implements AlignmentProcess { } </div> +<p>The complete example, following <a href="http://alignapi.gforge.inria.fr/tutorial/tutorial3/">how to extend the Alignment API with a new matcher</a> can be found at <a href="../tutorial3/MyAlignment.java">MyAlignment.java</a>.</p> + + <p>Then, it is simple to expose <tt>MyAlignment</tt> as a web service (<a href="MyAlignmentWS.java">MyAlignmentWS.java</a>):</p> <div class="fragment"> -- GitLab