Package org.openehr.am.archetype.constraintmodel

Examples of org.openehr.am.archetype.constraintmodel.CPrimitiveObject


                    CDvOrdinal dvOrdinal = (CDvOrdinal) child;
                    dvOrdinalInt++;
                    break;
                case "CPrimitiveObject":
                    //System.out.println(child.path());
                    CPrimitiveObject primitiveObject = (CPrimitiveObject) child;
                    //debugText("primitive object: "+child.getRmTypeName());
                    primitiveObjectInt++;
                    break;
                case "CCodePhrase":
                    //System.out.println(child.path());
View Full Code Here


        return terminology;
    }
   
    private String parseWidth(){
        String width = null;
        CPrimitiveObject cPrimitiveObject = (CPrimitiveObject)((CComplexObject)this.widthCAttribute.getChildren().get(0)).getAttributes().get(0).getChildren().get(0);
        CDuration cDuration = (CDuration)cPrimitiveObject.getItem();
       
        return width;
    }
View Full Code Here

TOP

Related Classes of org.openehr.am.archetype.constraintmodel.CPrimitiveObject

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.