/** */ package de.hftstuttgart.buildingphysics; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Catalog'. * * *

* The following features are supported: *

* * * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getCatalog() * @model abstract="true" * @generated */ public interface Catalog extends EObject { /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getCatalog_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Catalog#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Description' attribute. * * * @return the value of the 'Description' attribute. * @see #setDescription(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getCatalog_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Catalog#getDescription Description}' attribute. * * * @param value the new value of the 'Description' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * Returns the value of the 'Source' attribute. * * * @return the value of the 'Source' attribute. * @see #setSource(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getCatalog_Source() * @model * @generated */ String getSource(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Catalog#getSource Source}' attribute. * * * @param value the new value of the 'Source' attribute. * @see #getSource() * @generated */ void setSource(String value); } // Catalog