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

io.ciera.tool.templateengine.architecture.statement.VariableSet Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
package io.ciera.tool.templateengine.architecture.statement;


import io.ciera.runtime.summit.classes.IInstanceSet;
import io.ciera.runtime.summit.exceptions.XtumlException;
import io.ciera.tool.templateengine.architecture.expression.VariableReferenceSet;
import io.ciera.tool.templateengine.architecture.statement.FinalizationSet;
import io.ciera.tool.templateengine.architecture.statement.ForSmtSet;
import io.ciera.tool.templateengine.architecture.statement.StatementSet;
import io.ciera.tool.templateengine.architecture.statement.VariableInScopeSet;
import io.ciera.tool.templateengine.architecture.type.TypeReferenceSet;


public interface VariableSet extends IInstanceSet {

    // attributes
    public void setType_package( String ref_type_package ) throws XtumlException;
    public void setParent_name( String ref_parent_name ) throws XtumlException;
    public void setType_name( String ref_type_name ) throws XtumlException;
    public void setBlock_number( String ref_block_number ) throws XtumlException;
    public void setParent_package( String ref_parent_package ) throws XtumlException;
    public void setName( String m_name ) throws XtumlException;
    public void setStatement_number( String ref_statement_number ) throws XtumlException;
    public void setType_reference_name( String ref_type_reference_name ) throws XtumlException;
    public void setBody_name( String ref_body_name ) throws XtumlException;


    // selections
    public StatementSet R457_is_declared_by_Statement() throws XtumlException;
    public VariableInScopeSet R458_is_in_scope_for_VariableInScope() throws XtumlException;
    public ForSmtSet R459_is_iterator_for_ForSmt() throws XtumlException;
    public TypeReferenceSet R461_is_typed_by_TypeReference() throws XtumlException;
    public FinalizationSet R485_finalized_by_Finalization() throws XtumlException;
    public VariableReferenceSet R782_referenced_through_VariableReference() throws XtumlException;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy