Examples of UCOAllowedAttributesRuleDataREF


Examples of org.dmd.dmv.shared.generated.types.UCOAllowedAttributesRuleDataREF

        super(ai);
    }

    @Override
    protected UCOAllowedAttributesRuleDataREF getNewHelper(){
        return(new UCOAllowedAttributesRuleDataREF());
    }
View Full Code Here

Examples of org.dmd.dmv.shared.generated.types.UCOAllowedAttributesRuleDataREF

        return(false);
    }

    @Override
    protected UCOAllowedAttributesRuleDataREF typeCheck(Object value) throws DmcValueException {
        UCOAllowedAttributesRuleDataREF rc = null;

        if (value instanceof UCOAllowedAttributesRuleDataREF)
            rc = (UCOAllowedAttributesRuleDataREF)value;
        else if (value instanceof UCOAllowedAttributesRuleDataDMO)
            rc = new UCOAllowedAttributesRuleDataREF((UCOAllowedAttributesRuleDataDMO)value);
        else if (value instanceof RuleName)
            rc = new UCOAllowedAttributesRuleDataREF((RuleName)value);
        else if (value instanceof String)
            rc = new UCOAllowedAttributesRuleDataREF((String)value);
        else
            throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with UCOAllowedAttributesRuleDataREF, UCOAllowedAttributesRuleDataDMO or String expected."));

        return(rc);
    }
View Full Code Here

Examples of org.dmd.dmv.shared.generated.types.UCOAllowedAttributesRuleDataREF

        value.serializeIt(dos);
    }

    @Override
    public UCOAllowedAttributesRuleDataREF deserializeValue(DmcInputStreamIF dis) throws Exception {
        UCOAllowedAttributesRuleDataREF rc = new UCOAllowedAttributesRuleDataREF();
        rc.deserializeIt(dis);
        return(rc);
    }
View Full Code Here

Examples of org.dmd.dmv.shared.generated.types.UCOAllowedAttributesRuleDataREF

        return(rc);
    }

    @Override
    public UCOAllowedAttributesRuleDataREF cloneValue(UCOAllowedAttributesRuleDataREF value){
        return(new UCOAllowedAttributesRuleDataREF(value));
    }
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.