aounitundertestpart.cs
来自「ASAMODS BaseModel C#」· CS 代码 · 共 71 行
CS
71 行
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace ASAMODS.BaseModel
{
public abstract class AoUnitUnderTestPart:AoBase
{
#region Base Attributes
#endregion
#region Relations
private IList children;
private AoMeasurement measurement;
private AoUnitUnderTest parent_unit_under_test;
private AoUnitUnderTestPart parent_unit_under_test_part;
/// <summary>
/// CHILD
///SET[0:?] OF AoUnitUnderTestPart
/// </summary>
public IList Children
{
get { return children; }
set { children = value; }
}
/// <summary>
///INFO_REL
///SET[0:?] OF AoMeasurement
///INVERSE FOR units_under_test
/// </summary>
public AoMeasurement Measurement
{
get { return measurement; }
set { measurement = value; }
}
/// <summary>
/// FATHER
///AoUnitUnderTest
///INVERSE FOR children
///May not exist if parent_unit_under_test_part exists.
/// </summary>
public AoUnitUnderTest Parent_unit_under_test
{
get { return parent_unit_under_test; }
set { parent_unit_under_test = value; }
}
/// <summary>
/// FATHER
///AoUnitUnderTestPart
///INVERSE FOR children
///May not exist if parent_unit_under_test exists.
/// </summary>
public AoUnitUnderTestPart Parent_unit_under_test_part
{
get { return parent_unit_under_test_part; }
set { parent_unit_under_test_part = value; }
}
#endregion
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?