Examples of AllowedAttributesRuleDataREF


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

        super(ai);
    }

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

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

        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

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

        value.serializeIt(dos);
    }

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

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

        return(rc);
    }

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