Beispiel #1
0
 public InteractionPointInfoWrapper(InteractionPointInfo iPointInf,
                                    InteractionPointAttribute ipInfAttribute, NavTargetAttribute[] navTargAttributes)
 {
     this.iPointInf         = iPointInf;
     this.ipInfAttribute    = ipInfAttribute;
     this.navTargAttributes = navTargAttributes;
 }
 protected virtual InteractionPointInfo CreateInteractionPointInfo(string viewName,
                                     InteractionPointAttribute ipAttribute)
 {
     InteractionPointInfo result = new InteractionPointInfo();
     result.ViewName = viewName;
     result.ControllerType = ipAttribute.ControllerType;
     result.IsCommonTarget = ipAttribute.IsCommonTarget;
     return result;
 }
Beispiel #3
0
        private InteractionPointInfo CreateInteractionPointInfo(string viewName,
                                                                InteractionPointAttribute ipAttribute)
        {
            InteractionPointInfo result = new InteractionPointInfo();

            result.ViewName       = viewName;
            result.ControllerType = ipAttribute.ControllerType;
            result.IsCommonTarget = ipAttribute.IsCommonTarget;
            return(result);
        }
 protected override InteractionPointInfo CreateInteractionPointInfo(
                    string viewName, InteractionPointAttribute ipAttribute)
 {
     InteractionPointInfoEx result = new InteractionPointInfoEx();
     result.ViewName = viewName;
     result.ControllerType = ipAttribute.ControllerType;
     result.IsCommonTarget = ipAttribute.IsCommonTarget;
     result.ViewCategory = (ipAttribute as IPointExAttribute).ViewCategory;
     return result;
 }
 protected override InteractionPointInfo CreateInteractionPointInfo(string viewName, InteractionPointAttribute ipAttribute)
 {
     InteractionPointInfo res = base.CreateInteractionPointInfo(viewName, ipAttribute);
     res.ViewName = (ipAttribute as StubIPointAttribute).MyProperty;
     return res;
 }
 public InteractionPointInfoWrapper(InteractionPointInfo iPointInf,
        InteractionPointAttribute ipInfAttribute, NavTargetAttribute[] navTargAttributes)
 {
     this.iPointInf = iPointInf;
     this.ipInfAttribute = ipInfAttribute;
     this.navTargAttributes = navTargAttributes;
 }