All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dmd.dmt.shared.generated.types.DmcTypeExtendedRefTSREF Maven / Gradle / Ivy

Go to download

The dark-matter project provides mechanism to define concepts associated with Domain Specific Languages (DSLs) and generate code that can be extended with business logic that supports the given DSL purpose.

There is a newer version: 3.1.15
Show newest version
package org.dmd.dmt.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.dmt.shared.generated.dmo.ExtendedRefTSDMO;

/**
 * This is the generated DmcAttribute derivative for values of type ExtendedRefTS
 * 

* Generated from the dmt schema at version 0.1 *

* 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 DmcTypeExtendedRefTSREF extends DmcAttribute implements Serializable { public DmcTypeExtendedRefTSREF(){ } public DmcTypeExtendedRefTSREF(DmcAttributeInfo ai){ super(ai); } protected ExtendedRefTSDMO typeCheck(Object value) throws DmcValueException { if (value instanceof ExtendedRefTSDMO) return((ExtendedRefTSDMO)value); throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with ExtendedRefTSDMO expected.")); } @Override public void serializeValue(DmcOutputStreamIF dos, ExtendedRefTSDMO value) throws Exception { value.serializeIt(dos); } @Override public ExtendedRefTSDMO deserializeValue(DmcInputStreamIF dis) throws Exception { ExtendedRefTSDMO rc = (ExtendedRefTSDMO)dis.getDMOInstance(dis); rc.deserializeIt(dis); return(rc); } @Override public ExtendedRefTSDMO cloneValue(ExtendedRefTSDMO value){ return((ExtendedRefTSDMO)value.cloneIt()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy