예제 #1
0
 /// <exception cref="ArgumentNullException">
 /// <paramref name="first"/> is null.-or-
 /// <paramref name="second"/> is null.
 /// </exception>
 internal DependencyRelationship(TypeBase first, TypeBase second) : base(first, second)
 {
     Attach();
 }
예제 #2
0
파일: TypeBase.cs 프로젝트: carlcnx/EnClass
 protected virtual void CopyFrom(TypeBase type)
 {
     name   = type.name;
     access = type.access;
 }
예제 #3
0
 /// <exception cref="RelationshipException">
 /// Cannot create nesting relationship.
 /// </exception>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="parentClass"/> is null.-or-
 /// <paramref name="innerClass"/> is null.
 /// </exception>
 internal NestingRelationship(CompositeType parentType, TypeBase innerType)
     : base(parentType, innerType)
 {
     Attach();
 }