Skip to content
Snippets Groups Projects
Select Git revision
  • d53424fad5547cdc781a97e257fe90dbfba3aebb
  • master default protected
2 results

RoleModelGroupingFeatureReference.java

Blame
  • user avatar
    Kevin Kassin authored
    the role model feature is now closer to a normal compartment type to
    enable using created role models as compartment types,
    also created a graphical representation of the IORM Model
    db05dd29
    History
    RoleModelGroupingFeatureReference.java 825 B
    package rolemodel;
    
    import org.framed.iorm.model.Type;
    import org.framed.iorm.ui.references.AbstractGroupingFeatureReference;
    
    /**
     * This is the grouping feature reference which contain informations about the role model
     * @author Kevin Kassin
     */
    public class RoleModelGroupingFeatureReference extends AbstractGroupingFeatureReference {
    
    	/**
    	 * the compartment type's literals
    	 */
    	Literals literals = new Literals();
    	
    	/**
    	 * class constructor
    	 */
    	public RoleModelGroupingFeatureReference() {
    		modelType = Type.COMPARTMENT_TYPE;
    		DIAGRAM_KIND = literals.DIAGRAM_KIND;
    		SHAPE_ID_CONTAINER = literals.SHAPE_ID_ROLEMODEL_CONTAINER;
    		SHAPE_ID_NAME = literals.SHAPE_ID_ROLEMODEL_NAME;
    		SHAPE_ID_TYPEBODY = literals.SHAPE_ID_ROLEMODEL_TYPEBODY;
    		paletteView = literals.paletteView;
    	}
    }