Example #1
0
        /* checks if the classToCheck is in the given range */
        public Boolean ClassIsInRange(OntologyClass classToCheck, OntologyRange range)
        {
            Boolean retval = false;

            retval = this.ClassIsA(classToCheck, this.classHash[range.GetFullName()]);
            return(retval);
        }
Example #2
0
 public OntologyProperty(String name, String range)
 {
     this.name  = new OntologyName(name);
     this.range = new OntologyRange(range);
 }