SymmetricPropertyImpl.java |
1 /* 2 * SymmetricPropertyImpl.java 3 * 4 * Copyright (c) 2005, The University of Sheffield. 5 * 6 * This file is part of GATE (see http://gate.ac.uk/), and is free 7 * software, licenced under the GNU Library General Public License, 8 * Version 2, June1991. 9 * 10 * A copy of this licence is included in the distribution in the file 11 * licence.html, and is also available at http://gate.ac.uk/gate/licence.html. 12 * 13 * Valentin Tablan 16-Sep-2005 14 * 15 * 16 * $Id$ 17 */ 18 package gate.creole.ontology; 19 20 import java.util.Set; 21 22 /** 23 * @author Valentin Tablan 24 * 25 */ 26 public class SymmetricPropertyImpl extends ObjectPropertyImpl implements 27 SymmetricProperty { 28 /** 29 * @param name 30 * @param comment 31 * @param aDomainClass 32 * @param aRange 33 * @param anOntology 34 */ 35 public SymmetricPropertyImpl(String name, String comment, 36 OClass aDomainClass, OClass aRange, Ontology anOntology) { 37 super(name, comment, aDomainClass, aRange, anOntology); 38 } 39 40 /** 41 * @param name 42 * @param comment 43 * @param aDomain 44 * @param aRange 45 * @param anOntology 46 */ 47 public SymmetricPropertyImpl(String name, String comment, Set aDomain, 48 Set aRange, Ontology anOntology) { 49 super(name, comment, aDomain, aRange, anOntology); 50 } 51 } 52