note description: "Medications" author: "Jackie Wang" class interface MEDICATION create make feature -- Queries name: STRING_8 feature -- Constructor make (n: STRING_8) -- Initialize a new medication identified through 'n'. require n /= Void ensure name ~ n feature -- Create interaction interacted_with alias "|->" (other: like Current): INTERACTION feature -- Equality is_equal (other: like Current): BOOLEAN -- Are current medication equal to 'other'? feature -- Debug output debug_output: STRING_8 out: STRING_8 -- New string containing terse printable representation -- of current object end -- class MEDICATION
Generated by ISE EiffelStudio