#region --------------- Copyright Dresser Wayne Pignone ------------- /* * $Log: /Wrk/WayneLibraries/Wrk/StateEngine/Description/AsyncDoneDescription.cs $ * * 1 08-02-26 14:12 Mattias.larsson * Created. */ #endregion using System; using Wayne.Lib.StateEngine.Generic; namespace Wayne.Lib.StateEngine.Description { /// /// Describe the AsyncDone / transition relationship for a state class of the generic AsyncWorkState. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)] public class AsyncDoneDescription : EventDescriptionAttribute { #region Construction /// /// Describe the AsyncDone-event / transition relationship for a state class. /// /// A descriptive text for the condition. /// Transition that is performed. public AsyncDoneDescription(string conditionText, object transitionType) : base(GenericEventType.AsyncDone, conditionText, transitionType) { } #endregion } }