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

org.dmd.dms.generated.types.DmcTypeBaseTypeEnumSV 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
//	---------------------------------------------------------------------------
//	dark-matter-data
//	Copyright (c) 2012-2021 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 .
//	---------------------------------------------------------------------------
package org.dmd.dms.generated.types;

import java.io.Serializable;
import org.dmd.dmc.DmcAttribute;
import org.dmd.dmc.DmcAttributeInfo;
import org.dmd.dmc.DmcValueException;
import org.dmd.dms.generated.enums.BaseTypeEnum;    // DmcType import
/**
 * The DmcTypeBaseTypeEnumSV provides storage for a single-valued BaseTypeEnum
 * 

* This code was auto-generated and shouldn't be altered manually! * Generated from: org.dmd.dms.util.GenUtility.dumpSVType(GenUtility.java:2171) * Called from: org.dmd.dms.meta.MetaGenerator.dumpDerivedTypes(MetaGenerator.java:591) */ @SuppressWarnings("serial") public class DmcTypeBaseTypeEnumSV extends DmcTypeBaseTypeEnum implements Serializable { protected BaseTypeEnum value; public DmcTypeBaseTypeEnumSV(){ } public DmcTypeBaseTypeEnumSV(DmcAttributeInfo ai){ super(ai); } public DmcTypeBaseTypeEnumSV getNew(){ return(new DmcTypeBaseTypeEnumSV(getAttributeInfo())); } public DmcTypeBaseTypeEnumSV getNew(DmcAttributeInfo ai){ return(new DmcTypeBaseTypeEnumSV(ai)); } @Override // org.dmd.dms.util.GenUtility.dumpSVType(GenUtility.java:2203) public DmcAttribute cloneIt(){ DmcTypeBaseTypeEnumSV rc = getNew(); rc.value = value; return(rc); } // org.dmd.dms.util.GenUtility.dumpSVType(GenUtility.java:2214) public BaseTypeEnum getSVCopy(){ if (value == null) return(null); return(cloneValue(value)); } @Override // org.dmd.dms.util.GenUtility.dumpSVType(GenUtility.java:2226) public BaseTypeEnum set(Object v) throws DmcValueException { BaseTypeEnum rc = typeCheck(v); // We only return a value if the value actually changed. This supports // the applyModifier() mechanism on DmcObject where we only return true // if something changed as a result of the modifier if (value == null) value = rc; else{ if (value.equals(rc)) rc = null; else value = rc; } return(rc); } @Override public BaseTypeEnum getSV(){ return(value); } @Override public int getMVSize(){ return(0); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy