/src/lib/automaton/automaton_context.e

http://github.com/tybor/Liberty · Specman e · 62 lines · 31 code · 8 blank · 23 comment · 0 complexity · f9aa56b53d16ddcfaaba496d5e6f1acb MD5 · raw file

  1. -- This file is part of a Liberty Eiffel library.
  2. -- See the full copyright at the end.
  3. --
  4. class AUTOMATON_CONTEXT[E_]
  5. create {AUTOMATON}
  6. make
  7. feature {ANY} -- user data
  8. data: E_
  9. is_valid: BOOLEAN
  10. current_state: STATE[E_]
  11. feature {AUTOMATON} -- state memo
  12. set_current_state (s: like current_state)
  13. require
  14. s /= Void
  15. do
  16. current_state := s
  17. ensure
  18. current_state = s
  19. end
  20. invalidate
  21. do
  22. is_valid := False
  23. ensure
  24. not is_valid
  25. end
  26. feature {}
  27. make (e: E_)
  28. do
  29. data := e
  30. is_valid := True
  31. ensure
  32. data = e
  33. end
  34. end -- class AUTOMATON_CONTEXT
  35. --
  36. -- Copyright (C) 2009-2017: by all the people cited in the AUTHORS file.
  37. --
  38. -- Permission is hereby granted, free of charge, to any person obtaining a copy
  39. -- of this software and associated documentation files (the "Software"), to deal
  40. -- in the Software without restriction, including without limitation the rights
  41. -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  42. -- copies of the Software, and to permit persons to whom the Software is
  43. -- furnished to do so, subject to the following conditions:
  44. --
  45. -- The above copyright notice and this permission notice shall be included in
  46. -- all copies or substantial portions of the Software.
  47. --
  48. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  49. -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  50. -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  51. -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  52. -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  53. -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  54. -- THE SOFTWARE.