Examples of PatternMatchRuleDataREF


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

        super(ai);
    }

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

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

        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

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

        value.serializeIt(dos);
    }

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

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

        return(rc);
    }

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