
io.ciera.tool.sql.ooaofooa.body.impl.ACT_CONImpl Maven / Gradle / Ivy
package io.ciera.tool.sql.ooaofooa.body.impl;
import io.ciera.runtime.instanceloading.AttributeChangedDelta;
import io.ciera.runtime.instanceloading.InstanceCreatedDelta;
import io.ciera.runtime.summit.application.IRunContext;
import io.ciera.runtime.summit.classes.IInstanceIdentifier;
import io.ciera.runtime.summit.classes.InstanceIdentifier;
import io.ciera.runtime.summit.classes.ModelInstance;
import io.ciera.runtime.summit.exceptions.EmptyInstanceException;
import io.ciera.runtime.summit.exceptions.InstancePopulationException;
import io.ciera.runtime.summit.exceptions.XtumlException;
import io.ciera.runtime.summit.types.IWhere;
import io.ciera.runtime.summit.types.IXtumlType;
import io.ciera.runtime.summit.types.UniqueId;
import io.ciera.tool.Sql;
import io.ciera.tool.sql.ooaofooa.body.ACT_CON;
import io.ciera.tool.sql.ooaofooa.body.ACT_SMT;
import io.ciera.tool.sql.ooaofooa.body.impl.ACT_SMTImpl;
public class ACT_CONImpl extends ModelInstance implements ACT_CON {
public static final String KEY_LETTERS = "ACT_CON";
public static final ACT_CON EMPTY_ACT_CON = new EmptyACT_CON();
private Sql context;
// constructors
private ACT_CONImpl( Sql context ) {
this.context = context;
ref_Statement_ID = UniqueId.random();
R603_is_a_ACT_SMT_inst = ACT_SMTImpl.EMPTY_ACT_SMT;
}
private ACT_CONImpl( Sql context, UniqueId instanceId, UniqueId ref_Statement_ID ) {
super(instanceId);
this.context = context;
this.ref_Statement_ID = ref_Statement_ID;
R603_is_a_ACT_SMT_inst = ACT_SMTImpl.EMPTY_ACT_SMT;
}
public static ACT_CON create( Sql context ) throws XtumlException {
ACT_CON newACT_CON = new ACT_CONImpl( context );
if ( context.addInstance( newACT_CON ) ) {
newACT_CON.getRunContext().addChange(new InstanceCreatedDelta(newACT_CON, KEY_LETTERS));
return newACT_CON;
}
else throw new InstancePopulationException( "Instance already exists within this population." );
}
public static ACT_CON create( Sql context, UniqueId ref_Statement_ID ) throws XtumlException {
return create(context, UniqueId.random(), ref_Statement_ID);
}
public static ACT_CON create( Sql context, UniqueId instanceId, UniqueId ref_Statement_ID ) throws XtumlException {
ACT_CON newACT_CON = new ACT_CONImpl( context, instanceId, ref_Statement_ID );
if ( context.addInstance( newACT_CON ) ) {
return newACT_CON;
}
else throw new InstancePopulationException( "Instance already exists within this population." );
}
// attributes
private UniqueId ref_Statement_ID;
@Override
public void setStatement_ID(UniqueId ref_Statement_ID) throws XtumlException {
checkLiving();
if (ref_Statement_ID.inequality( this.ref_Statement_ID)) {
final UniqueId oldValue = this.ref_Statement_ID;
this.ref_Statement_ID = ref_Statement_ID;
getRunContext().addChange(new AttributeChangedDelta(this, KEY_LETTERS, "ref_Statement_ID", oldValue, this.ref_Statement_ID));
}
}
@Override
public UniqueId getStatement_ID() throws XtumlException {
checkLiving();
return ref_Statement_ID;
}
// instance identifiers
@Override
public IInstanceIdentifier getId1() {
try {
return new InstanceIdentifier(getStatement_ID());
}
catch ( XtumlException e ) {
getRunContext().getLog().error(e);
System.exit(1);
return null;
}
}
// operations
// static operations
// events
// selections
private ACT_SMT R603_is_a_ACT_SMT_inst;
@Override
public void setR603_is_a_ACT_SMT( ACT_SMT inst ) {
R603_is_a_ACT_SMT_inst = inst;
}
@Override
public ACT_SMT R603_is_a_ACT_SMT() throws XtumlException {
return R603_is_a_ACT_SMT_inst;
}
@Override
public IRunContext getRunContext() {
return context().getRunContext();
}
@Override
public Sql context() {
return context;
}
@Override
public String getKeyLetters() {
return KEY_LETTERS;
}
@Override
public ACT_CON self() {
return this;
}
@Override
public ACT_CON oneWhere(IWhere condition) throws XtumlException {
if (null == condition) throw new XtumlException("Null condition passed to selection.");
if (condition.evaluate(this)) return this;
else return EMPTY_ACT_CON;
}
}
class EmptyACT_CON extends ModelInstance implements ACT_CON {
// attributes
public void setStatement_ID( UniqueId ref_Statement_ID ) throws XtumlException {
throw new EmptyInstanceException( "Cannot set attribute of empty instance." );
}
public UniqueId getStatement_ID() throws XtumlException {
throw new EmptyInstanceException( "Cannot get attribute of empty instance." );
}
// operations
// selections
@Override
public ACT_SMT R603_is_a_ACT_SMT() {
return ACT_SMTImpl.EMPTY_ACT_SMT;
}
@Override
public String getKeyLetters() {
return ACT_CONImpl.KEY_LETTERS;
}
@Override
public ACT_CON self() {
return this;
}
@Override
public boolean isEmpty() {
return true;
}
@Override
public ACT_CON oneWhere(IWhere condition) throws XtumlException {
if (null == condition) throw new XtumlException("Null condition passed to selection.");
return ACT_CONImpl.EMPTY_ACT_CON;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy