What should I call a class that contains a sequence of states
        Posted  
        
            by Robert P
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Robert P
        
        
        
        Published on 2010-03-31T17:02:00Z
        Indexed on 
            2010/03/31
            17:03 UTC
        
        
        Read the original article
        Hit count: 360
        
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?
© Stack Overflow or respective owner