1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System;
- namespace Wayne.Lib.StateEngine
- {
-
-
-
-
- public sealed class AnyState : State
- {
- #region Static Fields
- private static string factoryName;
- #endregion
- #region Static Properties
-
-
-
- public new static string FactoryName
- {
- get
- {
- if (factoryName == null)
- factoryName = typeof(AnyState).FullName;
- return factoryName;
- }
- }
- #endregion
- #region Static Methods
-
-
-
-
-
- public static string GetInstanceName(string parentStateInstanceName)
- {
- return string.Concat(parentStateInstanceName, ".", typeof(AnyState).Name);
- }
- #endregion
- }
- }
|