Changeset 9961 for stable/HeuristicLab.Data/3.3/Path Types
- Timestamp:
- 09/13/13 13:49:03 (11 years ago)
- Location:
- stable
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 9714,9833,9841,9850,9949
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/trunk/sources/HeuristicLab.Data/3.3 merged eligible /branches/Algorithms.GradientDescent/HeuristicLab.Data/3.3 5516-5520 /branches/Benchmarking/sources/HeuristicLab.Data/3.3 6917-7005 /branches/CloningRefactoring/HeuristicLab.Data/3.3 4656-4721 /branches/DataAnalysis Refactoring/HeuristicLab.Data/3.3 5471-5808 /branches/DataAnalysis SolutionEnsembles/HeuristicLab.Data/3.3 5815-6180 /branches/DataAnalysis/HeuristicLab.Data/3.3 4458-4459,4462,4464 /branches/GP.Grammar.Editor/HeuristicLab.Data/3.3 6284-6795 /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Data/3.3 5060 /branches/HeuristicLab.Data Path DataTypes/HeuristicLab.Data/3.3 9668-9706 /branches/NET40/sources/HeuristicLab.Data/3.3 5138-5162 /branches/ParallelEngine/HeuristicLab.Data/3.3 5175-5192 /branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Data/3.3 7568-7810 /branches/QAPAlgorithms/HeuristicLab.Data/3.3 6350-6627 /branches/Restructure trunk solution/HeuristicLab.Data/3.3 6828 /branches/RuntimeOptimizer/HeuristicLab.Data/3.3 8943-9078 /branches/ScatterSearch (trunk integration)/HeuristicLab.Data/3.3 7787-8333 /branches/SlaveShutdown/HeuristicLab.Data/3.3 8944-8956 /branches/SuccessProgressAnalysis/HeuristicLab.Data/3.3 5370-5682 /branches/Trunk/HeuristicLab.Data/3.3 6829-6865 /branches/UnloadJobs/HeuristicLab.Data/3.3 9168-9215 /branches/VNS/HeuristicLab.Data/3.3 5594-5752 /branches/histogram/HeuristicLab.Data/3.3 5959-6341
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
stable/HeuristicLab.Data/3.3/Path Types/DirectoryValue.cs
r9680 r9961 39 39 40 40 public override bool Exists() { 41 return Directory.Exists( value);41 return Directory.Exists(Value); 42 42 } 43 43 } -
stable/HeuristicLab.Data/3.3/Path Types/FileValue.cs
r9680 r9961 20 20 #endregion 21 21 22 using System;23 22 using System.IO; 24 23 using HeuristicLab.Common; … … 37 36 if (fileDialogFilter != value) { 38 37 fileDialogFilter = value; 39 OnFileOpenDialogFilterChanged();40 38 } 41 39 } … … 58 56 59 57 public override bool Exists() { 60 return File.Exists(value); 61 } 62 63 public event EventHandler FileOpenDialogFilterChanged; 64 protected virtual void OnFileOpenDialogFilterChanged() { 65 var handler = FileOpenDialogFilterChanged; 66 if (handler != null) 67 handler(this, EventArgs.Empty); 58 return File.Exists(Value); 68 59 } 69 60 } -
stable/HeuristicLab.Data/3.3/Path Types/PathValue.cs
r9697 r9961 20 20 #endregion 21 21 22 23 22 using System.IO; 24 23 using HeuristicLab.Common; … … 29 28 [Item("PathValue", "Represents a path.")] 30 29 [StorableClass] 31 public abstract class PathValue : StringValue { 32 public override string Value { 33 get { return base.Value; } 30 public abstract class PathValue : Item { 31 32 [Storable] 33 private readonly StringValue stringValue = new StringValue(); 34 public StringValue StringValue { 35 get { return stringValue; } 36 } 37 38 public string Value { 39 get { return stringValue.Value; } 34 40 set { 35 41 if (value == null) value = string.Empty; 36 42 value = value.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar); 37 base.Value = value;43 stringValue.Value = value; 38 44 } 39 45 } … … 41 47 [StorableConstructor] 42 48 protected PathValue(bool deserializing) : base(deserializing) { } 43 protected PathValue(PathValue original, Cloner cloner) : base(original, cloner) { } 49 protected PathValue(PathValue original, Cloner cloner) 50 : base(original, cloner) { 51 stringValue = cloner.Clone(original.stringValue); 52 } 44 53 45 protected PathValue() 46 : base(string.Empty) { } 54 protected PathValue() : base() { } 47 55 48 56 public abstract bool Exists();
Note: See TracChangeset
for help on using the changeset viewer.