aotest.cs

来自「ASAMODS BaseModel C#」· CS 代码 · 共 38 行

CS
38
字号
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;

namespace ASAMODS.BaseModel
{
    public class AoTest:AoBase
    {

        private IList children;
        ///SET[0:?] OF AoSubTest OR SET[0:?] OF AoMeasurement
        ///MANDATORY ATTRIBUTE (required in application model)
        ///These relations may reference either instances of an application
        ///element derived from the base element AoSubTest or instances of
        ///an application element derived from the base element
        ///AoMeasurement, but not a combination of both.
        public IList Children
        {
            get { return children; }
            set { children = value; }
        }

        private AoEnvironment environment;

        /// <summary>
        /// SET[0:1] OF AoEnvironment
        ///INVERSE FOR tests
        /// </summary>
        public AoEnvironment Environment
        {
            get { return environment; }
            set { environment = value; }
        }

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?