Exemplo n.º 1
0
 public static void CopyInFromBinary(
     this IPerkEntryPointSetText item,
     MutagenFrame frame,
     RecordTypeConverter?recordTypeConverter = null)
 {
     ((PerkEntryPointSetTextSetterCommon)((IPerkEntryPointSetTextGetter)item).CommonSetterInstance() !).CopyInFromBinary(
         item: item,
         frame: frame,
         recordTypeConverter: recordTypeConverter);
 }
 public static void CopyInFromBinary(
     this IPerkEntryPointSetText item,
     MutagenFrame frame,
     TypedParseParams?translationParams = null)
 {
     ((PerkEntryPointSetTextSetterCommon)((IPerkEntryPointSetTextGetter)item).CommonSetterInstance() !).CopyInFromBinary(
         item: item,
         frame: frame,
         translationParams: translationParams);
 }
Exemplo n.º 3
0
 public static void DeepCopyIn(
     this IPerkEntryPointSetText lhs,
     IPerkEntryPointSetTextGetter rhs,
     ErrorMaskBuilder?errorMask,
     TranslationCrystal?copyMask)
 {
     ((PerkEntryPointSetTextSetterTranslationCommon)((IPerkEntryPointSetTextGetter)lhs).CommonSetterTranslationInstance() !).DeepCopyIn(
         item: lhs,
         rhs: rhs,
         errorMask: errorMask,
         copyMask: copyMask,
         deepCopy: false);
 }
Exemplo n.º 4
0
        public static void DeepCopyIn(
            this IPerkEntryPointSetText lhs,
            IPerkEntryPointSetTextGetter rhs,
            out PerkEntryPointSetText.ErrorMask errorMask,
            PerkEntryPointSetText.TranslationMask?copyMask = null)
        {
            var errorMaskBuilder = new ErrorMaskBuilder();

            ((PerkEntryPointSetTextSetterTranslationCommon)((IPerkEntryPointSetTextGetter)lhs).CommonSetterTranslationInstance() !).DeepCopyIn(
                item: lhs,
                rhs: rhs,
                errorMask: errorMaskBuilder,
                copyMask: copyMask?.GetCrystal(),
                deepCopy: false);
            errorMask = PerkEntryPointSetText.ErrorMask.Factory(errorMaskBuilder);
        }
Exemplo n.º 5
0
 public static void Clear(this IPerkEntryPointSetText item)
 {
     ((PerkEntryPointSetTextSetterCommon)((IPerkEntryPointSetTextGetter)item).CommonSetterInstance() !).Clear(item: item);
 }