Examples of SWRLBinaryAtom


Examples of org.semanticweb.owl.model.SWRLBinaryAtom

        return arg1;
    }


    protected int compareObjectOfSameType(OWLObject object) {
        SWRLBinaryAtom other = (SWRLBinaryAtom) object;
        int diff = ((OWLObject)getPredicate()).compareTo((OWLObject)other.getPredicate());
        if(diff != 0) {
            return diff;
        }
        diff = arg0.compareTo(other.getFirstArgument());
        if(diff != 0) {
            return diff;
        }
        return arg1.compareTo(other.getSecondArgument());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.