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

org.dmd.dmv.shared.generated.types.ValueLengthRuleDataREF 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) 2010-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.dmv.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.dmv.shared.generated.dmo.ValueLengthRuleDataDMO; // primitive type
import org.dmd.dmc.types.RuleName;
import org.dmd.dms.generated.types.DmcTypeRuleNameSV; 

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

* Generated from the dmv 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.dumpNamedREF(DmoTypeFormatter.java:420) */ @SuppressWarnings("serial") public class ValueLengthRuleDataREF extends DmcNamedObjectNontransportableREF { public final static DmcAttributeInfo __ruleName = new DmcAttributeInfo("ruleName",153,"RuleName",ValueTypeEnum.SINGLE,DataTypeEnum.PERSISTENT); DmcTypeRuleNameSV myName; // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:437) public ValueLengthRuleDataREF(){ } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:441) public ValueLengthRuleDataREF(ValueLengthRuleDataDMO o){ object = o; myName = (DmcTypeRuleNameSV)o.getObjectNameAttribute(); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:447) public ValueLengthRuleDataREF(RuleName n) throws DmcValueException { object = null; myName = new DmcTypeRuleNameSV(__ruleName); myName.set(n); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:454) public ValueLengthRuleDataREF(String n) throws DmcValueException { object = null; myName = new DmcTypeRuleNameSV(__ruleName); myName.set(n); } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:461) public ValueLengthRuleDataREF(ValueLengthRuleDataREF original){ myName = original.myName; object = original.object; } // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:467) public void setObject(ValueLengthRuleDataDMO o){ object = o; if (object != null) myName = (DmcTypeRuleNameSV)o.getObjectNameAttribute(); } /** * Clones this reference. */ // Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:477) public ValueLengthRuleDataREF cloneMe(){ ValueLengthRuleDataREF rc = new ValueLengthRuleDataREF(); rc.myName = myName; rc.object = object; return(rc); } @Override public void setName(DmcObjectName n) throws DmcValueException { if (myName == null) myName = new DmcTypeRuleNameSV(__ruleName); 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 RuleName 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 = (DmcTypeRuleNameSV) dis.getAttributeInstance(); myName.deserializeIt(dis); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy