
io.ciera.tool.sql.loader.AttributeLoader Maven / Gradle / Ivy
package io.ciera.tool.sql.loader;
import io.ciera.runtime.summit.classes.IModelInstance;
import io.ciera.runtime.summit.exceptions.XtumlException;
import io.ciera.tool.Sql;
import io.ciera.tool.sql.loader.AttributeLoader;
import io.ciera.tool.sql.loader.BooleanLoader;
import io.ciera.tool.sql.loader.EnumeratorLoader;
import io.ciera.tool.sql.loader.GeneralLoader;
import io.ciera.tool.sql.loader.InstanceLoader;
import io.ciera.tool.sql.loader.IntegerLoader;
import io.ciera.tool.sql.loader.RealLoader;
import io.ciera.tool.sql.loader.StringLoader;
public interface AttributeLoader extends IModelInstance {
// attributes
public void setLoader_name( String ref_loader_name ) throws XtumlException;
public String getLoader_name() throws XtumlException;
public void setLoader_package( String ref_loader_package ) throws XtumlException;
public String getLoader_package() throws XtumlException;
public void setClass_name( String ref_class_name ) throws XtumlException;
public String getClass_name() throws XtumlException;
public void setAttr_name( String m_attr_name ) throws XtumlException;
public String getAttr_name() throws XtumlException;
public int getIndex() throws XtumlException;
public void setIndex( int m_index ) throws XtumlException;
public String getPrev_attr_name() throws XtumlException;
public void setPrev_attr_name( String ref_prev_attr_name ) throws XtumlException;
public void setPrev_index( int ref_prev_index ) throws XtumlException;
public int getPrev_index() throws XtumlException;
public void setValue_index( int m_value_index ) throws XtumlException;
public int getValue_index() throws XtumlException;
// operations
public void render() throws XtumlException;
// selections
default public void setR3006_invoked_by_InstanceLoader( InstanceLoader inst ) {}
public InstanceLoader R3006_invoked_by_InstanceLoader() throws XtumlException;
default public void setR3007_follows_AttributeLoader( AttributeLoader inst ) {}
public AttributeLoader R3007_follows_AttributeLoader() throws XtumlException;
default public void setR3007_precedes_AttributeLoader( AttributeLoader inst ) {}
public AttributeLoader R3007_precedes_AttributeLoader() throws XtumlException;
default public void setR3008_is_a_BooleanLoader( BooleanLoader inst ) {}
public BooleanLoader R3008_is_a_BooleanLoader() throws XtumlException;
default public void setR3008_is_a_EnumeratorLoader( EnumeratorLoader inst ) {}
public EnumeratorLoader R3008_is_a_EnumeratorLoader() throws XtumlException;
default public void setR3008_is_a_GeneralLoader( GeneralLoader inst ) {}
public GeneralLoader R3008_is_a_GeneralLoader() throws XtumlException;
default public void setR3008_is_a_IntegerLoader( IntegerLoader inst ) {}
public IntegerLoader R3008_is_a_IntegerLoader() throws XtumlException;
default public void setR3008_is_a_RealLoader( RealLoader inst ) {}
public RealLoader R3008_is_a_RealLoader() throws XtumlException;
default public void setR3008_is_a_StringLoader( StringLoader inst ) {}
public StringLoader R3008_is_a_StringLoader() throws XtumlException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy