12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- using Wayne.Lib.StateEngine.Generic;
- namespace Wayne.Lib.StateEngine
- {
-
-
-
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
- public class TimeoutDescription : EventDescriptionAttribute
- {
- #region Construction
-
-
-
-
-
- public TimeoutDescription(string conditionText, object transitionType)
- : base(GenericEventType.Timeout, conditionText, transitionType)
- {
- }
-
-
-
-
- public TimeoutDescription( object transitionType)
- : this("", transitionType)
- {
- }
- #endregion
- }
- }
|