/** */ package org.example.democatalog; /** * * A representation of the model object 'Boiler'. * * *

* The following features are supported: *

* * * @see org.example.democatalog.DemocatalogPackage#getBoiler() * @model * @generated */ public interface Boiler extends ChemicalDevice { /** * Returns the value of the 'Boiler Type' attribute. * The literals are from the enumeration {@link org.example.democatalog.BoilerType}. * * * @return the value of the 'Boiler Type' attribute. * @see org.example.democatalog.BoilerType * @see #setBoilerType(BoilerType) * @see org.example.democatalog.DemocatalogPackage#getBoiler_BoilerType() * @model required="true" * @generated */ BoilerType getBoilerType(); /** * Sets the value of the '{@link org.example.democatalog.Boiler#getBoilerType Boiler Type}' attribute. * * * @param value the new value of the 'Boiler Type' attribute. * @see org.example.democatalog.BoilerType * @see #getBoilerType() * @generated */ void setBoilerType(BoilerType value); } // Boiler