Changeset 11386
- Timestamp:
- 09/23/14 17:05:38 (10 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/GenealogyGraph.cs
r11318 r11386 140 140 get { return base.Vertices.Cast<IGenealogyGraphNode<T>>(); } 141 141 } 142 143 public new IGenealogyGraphNode<T> GetByContent(object content) { 144 return (IGenealogyGraphNode<T>)base.GetByContent(content); 145 } 146 147 public new IGenealogyGraphNode<T> GetById(string id) { 148 return (IGenealogyGraphNode<T>)base.GetById(id); 149 } 142 150 } 143 151 } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraph.cs
r11233 r11386 34 34 public interface IGenealogyGraph<T> : IGenealogyGraph where T : class, IItem { 35 35 new IEnumerable<IGenealogyGraphNode<T>> Vertices { get; } 36 new IGenealogyGraphNode<T> GetByContent(object content); 37 new IGenealogyGraphNode<T> GetById(string id); 36 38 } 37 39 }
Note: See TracChangeset
for help on using the changeset viewer.