Changeset 1327
- Timestamp:
- 03/11/09 19:18:39 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Visualization
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/AvgAggregator.cs
r1325 r1327 164 164 } 165 165 166 public double MinValue { 167 get { throw new System.NotImplementedException(); } 168 } 169 170 public double MaxValue { 171 get { throw new System.NotImplementedException(); } 172 } 173 166 174 public event ValuesChangedHandler ValuesChanged; 167 175 -
trunk/sources/HeuristicLab.Visualization/AvgLineAggregator.cs
r1325 r1327 178 178 } 179 179 180 public double MinValue { 181 get { throw new System.NotImplementedException(); } 182 } 183 184 public double MaxValue { 185 get { throw new System.NotImplementedException(); } 186 } 187 180 188 public event ValuesChangedHandler ValuesChanged; 181 189 -
trunk/sources/HeuristicLab.Visualization/MaxAggregator.cs
r1325 r1327 167 167 } 168 168 169 public double MinValue { 170 get { throw new System.NotImplementedException(); } 171 } 172 173 public double MaxValue { 174 get { throw new System.NotImplementedException(); } 175 } 176 169 177 public event ValuesChangedHandler ValuesChanged; 170 178 -
trunk/sources/HeuristicLab.Visualization/MinAggregator.cs
r1325 r1327 166 166 } 167 167 168 public double MinValue { 169 get { throw new System.NotImplementedException(); } 170 } 171 172 public double MaxValue { 173 get { throw new System.NotImplementedException(); } 174 } 175 168 176 public event ValuesChangedHandler ValuesChanged; 169 177
Note: See TracChangeset
for help on using the changeset viewer.