/** */ package ca.mcgill.ecse.dslreasoner.vampire.yakindumm; /** * * A representation of the model object 'Entry'. * * *

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.YakindummPackage#getEntry() * @model * @generated */ public interface Entry extends Pseudostate { /** * Returns the value of the 'Type' attribute. * The literals are from the enumeration {@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.EntryType}. * *

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

* * @return the value of the 'Type' attribute. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.EntryType * @see #setType(EntryType) * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.YakindummPackage#getEntry_Type() * @model required="true" * @generated */ EntryType getType(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.vampire.yakindumm.Entry#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see ca.mcgill.ecse.dslreasoner.vampire.yakindumm.EntryType * @see #getType() * @generated */ void setType(EntryType value); } // Entry