Package org.dmd.dmp.shared.generated.types

Source Code of org.dmd.dmp.shared.generated.types.DmcTypeDMPEventREF

//  ---------------------------------------------------------------------------
//  dark-matter-data
//  Copyright (c) 2010 dark-matter-data committers
//  ---------------------------------------------------------------------------
//  This program is free software; you can redistribute it and/or modify it
//  under the terms of the GNU Lesser General Public License as published by the
//  Free Software Foundation; either version 3 of the License, or (at your
//  option) any later version.
//  This program is distributed in the hope that it will be useful, but WITHOUT
//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
//  more details.
//  You should have received a copy of the GNU Lesser General Public License along
//  with this program; if not, see <http://www.gnu.org/licenses/lgpl.html>.
//  ---------------------------------------------------------------------------
package org.dmd.dmp.shared.generated.types;

import java.io.Serializable;
import org.dmd.dmc.DmcInputStreamIF;
import org.dmd.dmc.DmcOutputStreamIF;
import org.dmd.dmc.DmcAttribute;
import org.dmd.dmc.DmcAttributeInfo;
import org.dmd.dmc.DmcValueException;
import org.dmd.dmp.shared.generated.dmo.DMPEventDMO;

/**
* This is the generated DmcAttribute derivative for values of type DMPEvent
* <P>
* Generated from the dmp schema at version 0.1
* <P>
* This code was auto-generated by the dmogenerator utility and shouldn't be alterred manually!
* Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNormalREFType(DmoTypeFormatter.java:197)
*/
@SuppressWarnings("serial")
abstract public class DmcTypeDMPEventREF extends DmcAttribute<DMPEventDMO> implements Serializable {

    public DmcTypeDMPEventREF(){
    }

    public DmcTypeDMPEventREF(DmcAttributeInfo ai){
        super(ai);
    }

    protected DMPEventDMO typeCheck(Object value) throws DmcValueException {
        if (value instanceof DMPEventDMO)
            return((DMPEventDMO)value);
       
        throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with DMPEventDMO expected."));
    }

    @Override
    public void serializeValue(DmcOutputStreamIF dos, DMPEventDMO value) throws Exception {
        value.serializeIt(dos);
    }

    @Override
    public DMPEventDMO deserializeValue(DmcInputStreamIF dis) throws Exception {
        DMPEventDMO rc = (DMPEventDMO)dis.getDMOInstance(dis);
        rc.deserializeIt(dis);
        return(rc);
    }

    @Override
    public DMPEventDMO cloneValue(DMPEventDMO value){
        return((DMPEventDMO)value.cloneIt());
    }

}
TOP

Related Classes of org.dmd.dmp.shared.generated.types.DmcTypeDMPEventREF

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.