Package edu.stanford.smi.protegex.owl.model

Examples of edu.stanford.smi.protegex.owl.model.OWLIndividual.addComment()


          mTheoryIndividual = mTheoryClass.createOWLIndividual(getMebn().getName());
        }
        Debug.println("MTheory = " + getMebn().getName());
       
        if(getMebn().getDescription() != null){
          mTheoryIndividual.addComment(getMebn().getDescription());
        }
       
        /* hasMFrag */
       
        OWLObjectProperty hasMFragProperty = (OWLObjectProperty)getOwlModel().getOWLObjectProperty("hasMFrag");  
View Full Code Here


          }
          getMapMFrag().put(domainMFrag, domainMFragIndividual);
          mTheoryIndividual.addPropertyValue(hasMFragProperty, domainMFragIndividual);
         
          if(domainMFrag.getDescription()!=null){
            domainMFragIndividual.addComment(domainMFrag.getDescription());
          }
         
          /* hasResidentNode */
          OWLObjectProperty hasResidentNodeProperty = (OWLObjectProperty)getOwlModel().getOWLObjectProperty("hasResidentNode");  
         
View Full Code Here

            if (oVariable.getValueType() != null){
              oVariableIndividual.addPropertyValue(isSubsByProperty, getMapMetaEntity().get(oVariable.getValueType().getName()));
            }
           
            if(oVariable.getDescription() != null){
              oVariableIndividual.addComment(oVariable.getDescription());  
            }
           
            getMapOrdinaryVariable().put(oVariable, oVariableIndividual);        
          }       
        }     
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.