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

io.ciera.tool.sql.architecture.statemachine.StateTransition Maven / Gradle / Ivy

There is a newer version: 2.7.3
Show newest version
package io.ciera.tool.sql.architecture.statemachine;


import io.ciera.runtime.summit.classes.IModelInstance;
import io.ciera.runtime.summit.exceptions.XtumlException;
import io.ciera.tool.Sql;
import io.ciera.tool.sql.architecture.invocable.InvocableObject;
import io.ciera.tool.sql.architecture.statemachine.State;
import io.ciera.tool.sql.architecture.statemachine.TransitionTableCell;


public interface StateTransition extends IModelInstance {

    // attributes
    public void setSm_name( String ref_sm_name ) throws XtumlException;
    public String getSm_name() throws XtumlException;
    public String getSm_package() throws XtumlException;
    public void setSm_package( String ref_sm_package ) throws XtumlException;
    public void setStart_state_name( String ref_start_state_name ) throws XtumlException;
    public String getStart_state_name() throws XtumlException;
    public void setEnd_state_name( String ref_end_state_name ) throws XtumlException;
    public String getEnd_state_name() throws XtumlException;
    public void setEvent_sm_name( String ref_event_sm_name ) throws XtumlException;
    public String getEvent_sm_name() throws XtumlException;
    public String getEvent_sm_package() throws XtumlException;
    public void setEvent_sm_package( String ref_event_sm_package ) throws XtumlException;
    public String getEvent_name() throws XtumlException;
    public void setEvent_name( String ref_event_name ) throws XtumlException;
    public void setName( String ref_name ) throws XtumlException;
    public String getName() throws XtumlException;


    // operations
    public void render() throws XtumlException;


    // selections
    default public void setR427_is_a_InvocableObject( InvocableObject inst ) {}
    public InvocableObject R427_is_a_InvocableObject() throws XtumlException;
    default public void setR4757_TransitionTableCell( TransitionTableCell inst ) {}
    public TransitionTableCell R4757_TransitionTableCell() throws XtumlException;
    default public void setR4757_transitions_to_State( State inst ) {}
    public State R4757_transitions_to_State() throws XtumlException;


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy