Example #1
0
        /*
         *        CONSTRUCTORS
         */
        /*
         *  public ValidationInfo(ValInfoType VIType, string StringName, OTTag tag, string stringTestName):
         *      base(VIType, StringName, null, "OTFontFile.ValStrings", "OTFontFile", tag, stringTestName)
         *  {
         *  }
         */

        /// <summary>Hardwires <c>OTFontFileVal.ValStrings</c> as
        /// the <c>nameFileErrs</c> and <c>OTFontFileVal</c> as
        /// the <c>nameAsmFileErrs</c> in the underlying
        /// <c>ValInfoBasic</c>.
        /// </summary>
        public ValidationInfo(ValInfoType VIType,
                              string StringName,
                              OTTag tag,
                              string StringDetails,
                              string stringTestName) :
            base(VIType, StringName, StringDetails,
                 "OTFontFileVal.ValStrings", "OTFontFileVal",
                 tag, stringTestName)
        {
        }
        /*
         *        CONSTRUCTORS
         */
    /*
        public ValidationInfo(ValInfoType VIType, string StringName, OTTag tag, string stringTestName):
            base(VIType, StringName, null, "OTFontFile.ValStrings", "OTFontFile", tag, stringTestName)
        {
        }
    */

        /// <summary>Hardwires <c>OTFontFileVal.ValStrings</c> as
        /// the <c>nameFileErrs</c> and <c>OTFontFileVal</c> as
        /// the <c>nameAsmFileErrs</c> in the underlying
        /// <c>ValInfoBasic</c>.
        /// </summary>
        public ValidationInfo( ValInfoType VIType, 
                               string StringName, 
                               OTTag tag, 
                               string StringDetails, 
                               string stringTestName):
            base(VIType, StringName, StringDetails, 
                 "OTFontFileVal.ValStrings", "OTFontFileVal", 
                 tag, stringTestName)
        {
        }
Example #3
0
 /// <summary>Does not appear to be called.</summary>
 public ValidationInfo(ValInfoType type,
                       string stringName,
                       string stringValueUser,
                       string nameFileErrs,
                       string nameAsmFileErrs,
                       OTTag tagPrincipal,
                       string stringTestName) :
     base(type, stringName, stringValueUser, nameFileErrs,
          nameAsmFileErrs, tagPrincipal, stringTestName)
 {
 }
 /// <summary>Does not appear to be called.</summary>
 public ValidationInfo(ValInfoType type, 
                       string stringName,
                       string stringValueUser,
                       string nameFileErrs,
                       string nameAsmFileErrs,
                       OTTag tagPrincipal,
                       string stringTestName):
     base(type,stringName,stringValueUser,nameFileErrs,
          nameAsmFileErrs,tagPrincipal, stringTestName)
 {
 }
Example #5
0
        //protected OTTag m_OTTagRelated;

        // constructors
        public ValInfoBasic()
        {
            this.m_Type            = ValInfoType.Info;
            this.m_StringName      = null;
            this.m_StringValueName = null;
            this.m_StringValueUser = null;
            this.m_NameFileErrs    = null;
            this.m_NameAsmFileErrs = null;
            this.m_OTTagPrincipal  = null;
            this.m_StringTestName  = null;
            //this.m_OTTagRelated=null;
        }
Example #6
0
        //protected OTTag m_OTTagRelated;

        // constructors
        public ValInfoBasic()
        {
            this.m_Type=ValInfoType.Info;
            this.m_StringName=null;
            this.m_StringValueName=null;
            this.m_StringValueUser=null;
            this.m_NameFileErrs=null;
            this.m_NameAsmFileErrs=null;
            this.m_OTTagPrincipal=null;
            this.m_StringTestName=null;
            //this.m_OTTagRelated=null;
        }
Example #7
0
 public ValInfoBasic(ValInfoBasic viBasic)
 {
     Debug.Assert(viBasic != null);
     this.m_Type            = viBasic.TypeBasic;
     this.m_StringName      = viBasic.Name;
     this.m_StringValueName = null;
     this.m_StringValueUser = viBasic.ValueUser;
     this.m_NameFileErrs    = viBasic.NameFileErrs;
     this.m_NameAsmFileErrs = viBasic.NameAsmFileErrs;
     this.m_OTTagPrincipal  = viBasic.TagPrincipal;
     this.m_StringTestName  = viBasic.m_StringTestName;
     //this.m_OTTagRelated=viBasic.TagRelated;
 }
Example #8
0
 public ValInfoBasic(ValInfoBasic viBasic) 
 {
     Debug.Assert(viBasic!=null);
     this.m_Type=viBasic.TypeBasic;
     this.m_StringName=viBasic.Name;
     this.m_StringValueName=null;
     this.m_StringValueUser=viBasic.ValueUser;
     this.m_NameFileErrs=viBasic.NameFileErrs;
     this.m_NameAsmFileErrs=viBasic.NameAsmFileErrs;
     this.m_OTTagPrincipal=viBasic.TagPrincipal;
     this.m_StringTestName=viBasic.m_StringTestName;
     //this.m_OTTagRelated=viBasic.TagRelated;
 }
Example #9
0
 public ValInfoBasic(ValInfoType type,
                     string stringName,
                     string stringValueUser,
                     string nameFileErrs,
                     string nameAsmFileErrs,
                     OTTag tagPrincipal,
                     string stringTestName)
 {
     this.m_Type            = type;
     this.m_StringName      = stringName;
     this.m_StringValueName = null;
     this.m_StringValueUser = stringValueUser;
     this.m_NameFileErrs    = nameFileErrs;
     this.m_NameAsmFileErrs = nameAsmFileErrs;
     this.m_OTTagPrincipal  = tagPrincipal;
     this.m_StringTestName  = stringTestName;
     //this.m_OTTagRelated=tagRelated;
 }
Example #10
0
 public ValInfoBasic(ValInfoType type, 
     string stringName,
     string stringValueUser,
     string nameFileErrs,
     string nameAsmFileErrs,
     OTTag tagPrincipal,
     string stringTestName)
 {
     this.m_Type=type;
     this.m_StringName=stringName;
     this.m_StringValueName=null;
     this.m_StringValueUser=stringValueUser;
     this.m_NameFileErrs=nameFileErrs;
     this.m_NameAsmFileErrs=nameAsmFileErrs;
     this.m_OTTagPrincipal=tagPrincipal;
     this.m_StringTestName=stringTestName;
     //this.m_OTTagRelated=tagRelated;
 }
Example #11
0
 public void SetValInfoType(ValInfoType mt)
 {
     this.m_Type = mt;
 }
Example #12
0
 public void SetValInfoType(ValInfoType mt) {this.m_Type=mt;}