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

org.dmd.dmt.shared.generated.types.DmcTypeUnnamedObjTSREF 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.UnnamedObjTSDMO;

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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy