What should I call a class that contains a sequence of states
- by Robert P
I have a GUI tool that manages state sequences. One component is a class that contains a set of states, your typical DFA state machine. For now, I'll call this a StateSet.
However, I have another class that has a collection (possibly partially unordered) of those state sets, and lists them in a particular order. and I'm trying to come up with a good name for it - not just for internal code, but for customers to refer to it.
I've got:
Sequence (maybe)
StateSetSet (reasonable for code, but not for customers)
Any other suggestions or ideas?