Examples of ValueLengthRuleDataREF


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

        super(ai);
    }

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

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

        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

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

        value.serializeIt(dos);
    }

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

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

        return(rc);
    }

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