12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- 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
- }
- }
|