Package org.mindswap.pellet

Examples of org.mindswap.pellet.Individual.addType()


       
        if( pred.equals( Compiler.TYPE ) ) {
          // add a type assertion for the individual
          Individual ind = abox.getIndividual( subj );
          ATermAppl type = obj;
          ind.addType( type, ds );
        } else if ( pred.equals( Compiler.SAME_AS ) ) {
          Individual ind1 = abox.getIndividual( subj );
          Individual ind2 = abox.getIndividual( obj );
         
          ind1.setSame( ind2, DependencySet.INDEPENDENT );
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.