//------------------------------------------------------
        //
        //  Constructors
        //
        //------------------------------------------------------

        #region Constructors

        internal AutomationPatternInfo(
            AutomationPattern id,
            WrapObject wcpWrapper)
        {
            _id         = id;
            _wcpWrapper = wcpWrapper;
        }
Beispiel #2
0
        //------------------------------------------------------
        //
        //  Constructors
        //
        //------------------------------------------------------
 
        #region Constructors

        internal AutomationPatternInfo( 
            AutomationPattern id,
            WrapObject wcpWrapper)
        {
            _id = id;
            _wcpWrapper = wcpWrapper;
        }
Beispiel #3
0
 internal PatternInfo(int id, WrapObject wrapObject, PatternInterface patternInterface)
 {
     Id = id;
     WrapObject = wrapObject;
     PatternInterface = patternInterface;
 }