コード例 #1
0
ファイル: ExolutioObject.cs プロジェクト: mff-uk/exolutio
 public virtual IExolutioCloneable Clone(ProjectVersion projectVersion, ElementCopiesMap createdCopies)
 {
     throw new NotImplementedException(string.Format("Clone is not implemented for type {0}.", this.GetType().Name));
 }
コード例 #2
0
ファイル: AttributeType.cs プロジェクト: mff-uk/exolutio
 public override IExolutioCloneable Clone(ProjectVersion projectVersion, ElementCopiesMap createdCopies)
 {
     return(new AttributeType(projectVersion.Project, createdCopies.SuggestGuid(this)));
 }
コード例 #3
0
ファイル: Stereotype.cs プロジェクト: mff-uk/exolutio
 public override IExolutioCloneable Clone(ProjectVersion projectVersion, ElementCopiesMap createdCopies)
 {
     return(new StereotypeInstance(projectVersion.Project, createdCopies.SuggestGuid(this)));
 }