01 /*
02 * SymmetricProperty.java
03 *
04 * Niraj Aswani, 09/March/07
05 *
06 * $Id: SymmetricProperty.java 11598 2009-10-13 13:44:17Z johann_p $
07 */
08 package gate.creole.ontology;
09
10 /**
11 * Every SymmetricProperty is ObjectProperty. The only difference being
12 * that the Domain and Range are identical.
13 *
14 * @author Niraj Aswani
15 *
16 */
17 public interface SymmetricProperty extends ObjectProperty {
18 }
|