/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage; /** * * A representation of the model object 'Symbolic Declaration'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getSymbolicDeclaration() * @model abstract="true" * @generated */ public interface SymbolicDeclaration extends TermDescription { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.LogiclanguagePackage#getSymbolicDeclaration_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.SymbolicDeclaration#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // SymbolicDeclaration