Mentions légales du service

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

- added one primitive: relString()

parent a923b2b9
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id$ * $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 * 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 * it under the terms of the GNU Lesser General Public License as published by
...@@ -36,14 +36,15 @@ public interface Relation ...@@ -36,14 +36,15 @@ public interface Relation
/** Creation **/ /** Creation **/
public void accept( AlignmentVisitor visitor ) throws AlignmentException; public void accept( AlignmentVisitor visitor ) throws AlignmentException;
public String relString();
public Relation inverse(); public Relation inverse();
public Relation compose(Relation r); public Relation compose( Relation r );
public boolean equals( Relation r ); public boolean equals( Relation r );
/** Housekeeping **/ /** Housekeeping **/
public void dump(ContentHandler h); public void dump( ContentHandler h );
//public void write( PrintStream writer );
public void write( PrintWriter writer ); public void write( PrintWriter writer );
} }
......
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