From 817988c66933fc8b5f29cb4741320709fefcc4ee Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Wed, 17 Jun 2009 20:54:24 +0000
Subject: [PATCH] - added one primitive: relString()

---
 src/org/semanticweb/owl/align/Relation.java | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/org/semanticweb/owl/align/Relation.java b/src/org/semanticweb/owl/align/Relation.java
index 37758210..2e9b66bb 100644
--- a/src/org/semanticweb/owl/align/Relation.java
+++ b/src/org/semanticweb/owl/align/Relation.java
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright (C) INRIA Rhône-Alpes, 2003-2005, 2007
+ * Copyright (C) INRIA, 2003-2005, 2007, 2009
  *
  * 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
@@ -36,14 +36,15 @@ public interface Relation
     /** Creation **/
     public void accept( AlignmentVisitor visitor ) throws AlignmentException;
 
+    public String relString();
+
     public Relation inverse();
-    public Relation compose(Relation r);
+    public Relation compose( Relation r );
 
     public boolean equals( Relation r );
 
     /** Housekeeping **/
-    public void dump(ContentHandler h);
-    //public void write( PrintStream writer );
+    public void dump( ContentHandler h );
     public void write( PrintWriter writer );
 
 }
-- 
GitLab