Skip to content

Commit

Permalink
UANodeSetValidation - Define independent Address Space API #672
Browse files Browse the repository at this point in the history
- Fixed IUAType
  • Loading branch information
mpostol committed Aug 11, 2022
1 parent abc2597 commit a7ae0fe
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public interface IUAType : IUANode
/// <summary>
/// Sets a value indicating whether this instance is abstract.
/// A boolean Attribute with the following values:
/// TRUE it is an abstract DataType.
/// FALSE it is not an abstract DataType.
/// TRUE it is an abstract type, i.e. no instances of this type shall exist, only of its subtypes.
/// FALSE it is not an abstract type, i.e. instances of this type can exist in the Address Space.
/// </summary>
/// <remarks>Default Value is false</remarks>
/// <value><c>true</c> if this instance is abstract; otherwise, <c>false</c>.</value>
/// <value><c>true</c> if this type is abstract; otherwise, <c>false</c>.</value>
bool IsAbstract { get; set; }
}
}

0 comments on commit a7ae0fe

Please sign in to comment.