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

org.dmd.templates.shared.generated.types.SectionREF 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) 2014 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.templates.shared.generated.types;

import org.dmd.dmc.DmcAttribute;
import org.dmd.dmc.DmcAttributeInfo;
import org.dmd.dmc.DmcObjectName;
import org.dmd.dmc.DmcValueException;
import org.dmd.dmc.DmcOutputStreamIF;
import org.dmd.dmc.DmcInputStreamIF;
import org.dmd.dmc.DmcNamedObjectNontransportableREF; // base import
import org.dmd.templates.shared.generated.dmo.SectionDMO; // primitive type
import org.dmd.dmc.types.DefinitionName;
import org.dmd.dms.generated.types.DmcTypeDefinitionNameSV; 

import org.dmd.dms.generated.enums.ValueTypeEnum;
import org.dmd.dms.generated.enums.DataTypeEnum;
/**
 * This is the generated DmcAttribute derivative for values of type Section
 * 

* Generated from the dmtdl schema at version unknown *

* This code was auto-generated by the dmogenerator utility and shouldn't be alterred manually! * Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:420) */ @SuppressWarnings("serial") public class SectionREF extends DmcNamedObjectNontransportableREF { public final static DmcAttributeInfo __name = new DmcAttributeInfo("name",2,"DefinitionName",ValueTypeEnum.SINGLE,DataTypeEnum.PERSISTENT); DmcTypeDefinitionNameSV myName; // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:437) public SectionREF(){ } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:441) public SectionREF(SectionDMO o){ object = o; myName = (DmcTypeDefinitionNameSV)o.getObjectNameAttribute(); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:447) public SectionREF(DefinitionName n) throws DmcValueException { object = null; myName = new DmcTypeDefinitionNameSV(__name); myName.set(n); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:454) public SectionREF(String n) throws DmcValueException { object = null; myName = new DmcTypeDefinitionNameSV(__name); myName.set(n); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:461) public SectionREF(SectionREF original){ myName = original.myName; object = original.object; } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:467) public void setObject(SectionDMO o){ object = o; if (object != null) myName = (DmcTypeDefinitionNameSV)o.getObjectNameAttribute(); } /** * Clones this reference. */ // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:477) public SectionREF cloneMe(){ SectionREF rc = new SectionREF(); rc.myName = myName; rc.object = object; return(rc); } @Override public void setName(DmcObjectName n) throws DmcValueException { if (myName == null) myName = new DmcTypeDefinitionNameSV(__name); myName.set(n); } public DmcObjectName getObjectName(){ if (myName == null) throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set.")); return(myName.getSV()); } public DefinitionName getName(){ if (myName == null) throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set.")); return(myName.getSV()); } public DmcAttribute getObjectNameAttribute(){ if (myName == null) throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set.")); return(myName); } public void serializeIt(DmcOutputStreamIF dos) throws Exception { myName.serializeIt(dos); } public void deserializeIt(DmcInputStreamIF dis) throws Exception { myName = (DmcTypeDefinitionNameSV) dis.getAttributeInstance(); myName.deserializeIt(dis); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy