Package org.dmd.dmg.generated.types

Examples of org.dmd.dmg.generated.types.ActifactGeneratorREF


        super(ai);
    }

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


        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

        value.serializeIt(dos);
    }

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

        return(rc);
    }

    @Override
    public ActifactGeneratorREF cloneValue(ActifactGeneratorREF value){
        return(new ActifactGeneratorREF(value));
    }
View Full Code Here

TOP

Related Classes of org.dmd.dmg.generated.types.ActifactGeneratorREF

Copyright © 2018 www.massapicom. 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.