diff --git a/src/org/semanticweb/owl/align/Alignment.java b/src/org/semanticweb/owl/align/Alignment.java
index 40db049de502db465d5d30cd16c6528b23d51712..a1e47adae11b24e468d865792eebc3f7fcdf0e96 100644
--- a/src/org/semanticweb/owl/align/Alignment.java
+++ b/src/org/semanticweb/owl/align/Alignment.java
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright (C) INRIA, 2003-2005, 2007-2009
+ * Copyright (C) INRIA, 2003-2005, 2007-2009, 2014
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -41,7 +41,7 @@ import org.xml.sax.ContentHandler;
 public interface Alignment extends Cloneable, Iterable<Cell>, Visitable {
 
     /** Initialize the alignement before using it **/
-
+    /** This should return an Alignment and not be void **/
     public void init( Object onto1, Object onto2 ) throws AlignmentException;
 
     /**
diff --git a/src/org/semanticweb/owl/align/AlignmentVisitor.java b/src/org/semanticweb/owl/align/AlignmentVisitor.java
index 7d3f227c9ad72596b4b3c25fe5f7f24f6257c543..51285f8905d49a6031d5990b4c1d7d8b8ba80e42 100644
--- a/src/org/semanticweb/owl/align/AlignmentVisitor.java
+++ b/src/org/semanticweb/owl/align/AlignmentVisitor.java
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright (C) INRIA, 2004, 2008-2009, 2012
+ * Copyright (C) INRIA, 2004, 2008-2009, 2012, 2014
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -30,7 +30,7 @@ import java.util.Properties;
  */
 
 public interface AlignmentVisitor {
-    public void init( Properties p );
+    public void init( Properties p ); // Should return it
     public void visit( Alignment o ) throws AlignmentException;
     public void visit( Cell o ) throws AlignmentException;
     public void visit( Relation o ) throws AlignmentException;