Examples of CSingleAttribute


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

                    //debugText(multipleAttribute.members());
                    //debugText(multipleAttribute.getChildren());
                                       
                    break;
                case "CSingleAttribute":
                    CSingleAttribute singleAttribute = (CSingleAttribute)parent;
                    debugText("singleAttribute rmAttributeName: "+singleAttribute.getRmAttributeName());
                    debugText("singleAttribute isValid: "+singleAttribute.isValid());
                    debugText("singleAttribute existence: "+singleAttribute.getExistence());
                    debugText("singleAttribute isAnyAllowed: "+singleAttribute.isAnyAllowed());
                    debugText("singleAttribute isNotAllowed: "+singleAttribute.isNotAllowed());
                    debugText("singleAttribute isRequired: "+singleAttribute.isRequired());
                    debugText("singleAttribute isValid: "+singleAttribute.isValid());
                    break;
                default:
                    debugText("???unknown class name???");
            }
           
View Full Code Here

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

        CComplexObject complexObject = (CComplexObject)object;
        List<CAttribute> attributes = complexObject.getAttributes();
       
        for(CAttribute cAttribute : attributes){
            if( cAttribute instanceof CSingleAttribute ){
                CSingleAttribute cSingleAttribute = (CSingleAttribute)cAttribute;
                switch(cSingleAttribute.getRmAttributeName()){
                    case "math_function":
                        mathFunctionCAttribute = cSingleAttribute;
                        break;
                    case "width":
                        widthCAttribute = cSingleAttribute;
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.