コード例 #1
0
 /// <summary>
 ///     Constructor
 /// </summary>
 /// <param name="action"></param>
 public Diff(ModelElement model, acceptor.ChangeOperationEnum action, string field = "", string before = "",
     string after = "")
     : base(model.Guid, action, field, before, after)
 {
 }
コード例 #2
0
 public static void setUnique(acceptor acc)
 {
     theOne = acc;
 }
コード例 #3
0
 public static acceptor getUnique()
 {
     if (theOne == null) { theOne = new acceptor(); }
       return theOne;
 }
コード例 #4
0
 public void setOperation(acceptor.ChangeOperationEnum v)
 {
     aOperation = v;
       __setDirty(true);
       NotifyControllers(null);
 }