01 /*
02 * TransitiveProperty.java
03 *
04 * Niraj Aswani, 09/March/07
05 *
06 * $Id: TransitiveProperty.java 11598 2009-10-13 13:44:17Z johann_p $
07 */
08 package gate.creole.ontology;
09
10 /**
11 * Interface for transitive properties.
12 *
13 * @author Niraj Aswani
14 */
15 public interface TransitiveProperty extends ObjectProperty {
16 }
|