public SearchComponentDescriptor(SearchComponentDescriptor Parent, BuildFileWrapper File, LineDescriptor Line)
 {
     this.Parent = Parent;
     this.Component = null;
     this.File = File;
     this.Line = Line;
 }
 public SearchComponentDescriptor(SearchComponentDescriptor Parent, ComponentWrapper Component)
 {
     this.Parent = Parent;
     this.Component = Component;
     this.File = null;
     this.Line = null;
 }