Examples of termDefinition()


Examples of org.openehr.am.archetype.ontology.ArchetypeOntology.termDefinition()

            debugText("parentNodePath: "+parent.parentNodePath());
            CObject parentNode = archetype.node(parent.parentNodePath());
            if( parentNode != null ){
                debugText("parent nodeId: "+parentNode.getNodeID());
                if( parentNode.getNodeID() != null ){
                    debugText("term text: "+archetypeOntology.termDefinition("en", parentNode.getNodeID()).getText());
                } else {
                    debugText("term text: ");
                }               
            }
           
View Full Code Here

Examples of org.openehr.am.archetype.ontology.ArchetypeOntology.termDefinition()

//                    && !rmTypeName.equalsIgnoreCase("HISTORY")
//                    && !rmTypeName.equalsIgnoreCase("OBSERVATION")
//                    && !rmTypeName.equalsIgnoreCase("DV_CODED_TEXT")
//                   )
                {
                    termDefinition = archetypeOntology.termDefinition("en", node.getNodeID());
                    if(termDefinition != null){
                        termDefinitionString = termDefinition.getText();
                        i++;
                        debugText(termDefinitionString+"\n"+rmTypeName+" \t- "+node.getClass().getSimpleName() + " \t- " + path);
                    } else {
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.