Description of MappingEnd.
Наследование: MappingFramework.MappingEnd
        void addNodeToTree(bool source)
        {
            //get the selected items
            var selectedElement = this.model.selectedElement as TSF_EA.Element;

            if (selectedElement != null)
            {
                var mappedEnd = new EA_MP.MappingEnd(selectedElement, selectedElement.fqn);
                //add the selected node to the source or target tree.
                this.mappingControl.addNode(mappedEnd, source);
            }
        }
Пример #2
0
 public TaggedValueMapping(MappingEnd source, MappingEnd target)
     : base(source, target)
 {
 }
 public Mapping(MappingEnd sourceEnd, MappingEnd targetEnd, MappingLogic logic)
     : this(sourceEnd,targetEnd)
 {
     _mappingLogic = logic;
 }
 public Mapping(MappingEnd sourceEnd, MappingEnd targetEnd)
 {
     _source = sourceEnd;
     _target = targetEnd;
 }
Пример #5
0
 public Mapping(MappingEnd sourceEnd, MappingEnd targetEnd, MappingLogic logic) : this(sourceEnd, targetEnd)
 {
     _mappingLogic = logic;
 }
Пример #6
0
 public Mapping(MappingEnd sourceEnd, MappingEnd targetEnd)
 {
     _source = sourceEnd;
     _target = targetEnd;
 }