Package org.openehr.am.openehrprofile.datatypes.text

Examples of org.openehr.am.openehrprofile.datatypes.text.CCodePhrase


                    //debugText("primitive object: "+child.getRmTypeName());
                    primitiveObjectInt++;
                    break;
                case "CCodePhrase":
                    //System.out.println(child.path());
                    CCodePhrase codePhrase = (CCodePhrase) child;
                    codePhraseInt++;
                    break;
                case "ArchetypeInternalRef":
//                    newPanel = new ContainerPanel();
//                    newPanel.setTooltip(child.path()+"<br />"+class_name+"="+child.getRmTypeName());
View Full Code Here


    }
   
    private String parseMathFunctionTerminology(){
        String terminology = "";
       
        CCodePhrase cCodePhrase = (CCodePhrase)((CComplexObject)this.mathFunctionCAttribute.getChildren().get(0)).getAttributes().get(0).getChildren().get(0);
        String terminologyID = cCodePhrase.getTerminologyId().getValue();
        List<String> codes = cCodePhrase.getCodeList();
       
        EhrTerminology ehrTerminology = new EhrTerminology();
        for( String code : codes )
            terminology += ehrTerminology.getRubricById(code)+", ";
       
View Full Code Here

TOP

Related Classes of org.openehr.am.openehrprofile.datatypes.text.CCodePhrase

Copyright © 2018 www.massapicom. 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.