Changeset 8934
- Timestamp:
- 11/21/12 18:56:24 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/HideStarterArgument.cs
r8818 r8934 27 27 public const string TOKEN = "hideStarter"; 28 28 29 public HideStarterArgument(string value) {30 Value = string.IsNullOrEmpty(value);29 public HideStarterArgument(string value) 30 : base(string.IsNullOrEmpty(value)) { 31 31 } 32 32 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/OpenArgument.cs
r8818 r8934 26 26 [Serializable] 27 27 public class OpenArgument : CommandLineArgument<string> { 28 public OpenArgument(string value) {29 Value = value;28 public OpenArgument(string value) 29 : base(value) { 30 30 } 31 31 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/Arguments/StartArgument.cs
r8818 r8934 27 27 public const string TOKEN = "start"; 28 28 29 public StartArgument(string value) {30 Value = value;29 public StartArgument(string value) 30 : base(value) { 31 31 } 32 32 -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/CommandLineArgumentHandling/CommandLineArgument.cs
r8818 r8934 26 26 public abstract class CommandLineArgument<T> : ICommandLineArgument<T> { 27 27 object ICommandLineArgument.Value { get { return Value; } } 28 public T Value { get; pr otectedset; }28 public T Value { get; private set; } 29 29 public bool Valid { get { return CheckValidity(); } } 30 31 protected CommandLineArgument(T value) { 32 Value = value; 33 } 30 34 31 35 public override bool Equals(object obj) {
Note: See TracChangeset
for help on using the changeset viewer.