Exemplo n.º 1
0
 public Type(PatternAndName pAndN)
 {
     this.abnormalName    = pAndN.AbnormalNameProp;
     this.isAbnormal      = false;
     this.conflictPattern = pAndN.ConflictPatternProp;
 }
Exemplo n.º 2
0
 public Type(string abnormalName)
 {
     this.abnormalName    = abnormalName;
     this.isAbnormal      = false;
     this.conflictPattern = ConflictPattern.NULL;
 }
Exemplo n.º 3
0
 public Type(string abnormalName, ConflictPattern pattern)
 {
     this.abnormalName    = abnormalName;
     this.isAbnormal      = false;
     this.conflictPattern = pattern;
 }
Exemplo n.º 4
0
 public PatternAndName(string abnormalName, ConflictPattern conflictPattern)
 {
     this.abnormalName    = abnormalName;
     this.conflictPattern = conflictPattern;
 }