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

io.ciera.tool.sql.architecture.statement.IfSmt Maven / Gradle / Ivy

package io.ciera.tool.sql.architecture.statement;


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.expression.Expression;
import io.ciera.tool.sql.architecture.invocable.CodeBlock;
import io.ciera.tool.sql.architecture.statement.Statement;


public interface IfSmt extends IModelInstance {

    // attributes
    public String getParent_name() throws XtumlException;
    public void setParent_name( String ref_parent_name ) throws XtumlException;
    public String getParent_package() throws XtumlException;
    public void setParent_package( String ref_parent_package ) throws XtumlException;
    public String getBody_name() throws XtumlException;
    public void setBody_name( String ref_body_name ) throws XtumlException;
    public String getBlock_number() throws XtumlException;
    public void setBlock_number( String ref_block_number ) throws XtumlException;
    public String getStatement_number() throws XtumlException;
    public void setStatement_number( String ref_statement_number ) throws XtumlException;
    public String getThen_block_number() throws XtumlException;
    public void setThen_block_number( String ref_then_block_number ) throws XtumlException;
    public void setElse_block_number( String ref_else_block_number ) throws XtumlException;
    public String getElse_block_number() throws XtumlException;
    public void setCond_expression_number( String ref_cond_expression_number ) throws XtumlException;
    public String getCond_expression_number() throws XtumlException;
    public boolean getIs_else_if() throws XtumlException;
    public void setIs_else_if( boolean m_is_else_if ) throws XtumlException;


    // operations
    public void render() throws XtumlException;


    // selections
    default public void setR451_is_a_Statement( Statement inst ) {}
    public Statement R451_is_a_Statement() throws XtumlException;
    default public void setR453_has_then_CodeBlock( CodeBlock inst ) {}
    public CodeBlock R453_has_then_CodeBlock() throws XtumlException;
    default public void setR454_has_else_CodeBlock( CodeBlock inst ) {}
    public CodeBlock R454_has_else_CodeBlock() throws XtumlException;
    default public void setR471_executes_then_block_if_true_Expression( Expression inst ) {}
    public Expression R471_executes_then_block_if_true_Expression() throws XtumlException;


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy