- Timestamp:
- 02/27/12 17:14:12 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/Plugin.cs
r7259 r7532 20 20 #endregion 21 21 22 using System; 22 23 using HeuristicLab.Common; 23 24 … … 40 41 41 42 public override string ToString() { 42 return string.Format("{0}-{1}", this.Name, this.Version .ToString());43 return string.Format("{0}-{1}", this.Name, this.Version == null ? new Version(0, 0).ToString() : this.Version.ToString()); 43 44 } 44 45 } -
trunk/sources/HeuristicLab.Clients.Hive/3.3/Tasks/EngineTask.cs
r7259 r7532 148 148 } 149 149 150 public override string ItemDescription {151 get { return Description; }152 }153 154 150 public static new Image StaticItemImage { 155 151 get { return HeuristicLab.Common.Resources.VSImageLibrary.Operator; } … … 159 155 get { return "EngineTask"; } 160 156 } 161 162 public override Version ItemVersion {163 get { return null; }164 }165 157 } 166 158 } -
trunk/sources/HeuristicLab.Clients.Hive/3.3/Tasks/ItemTask.cs
r7530 r7532 95 95 this.OnItemImageChanged(); 96 96 } 97 98 97 #endregion 99 98 100 99 #region ITask Members 101 102 100 public abstract ExecutionState ExecutionState { get; } 103 101 … … 173 171 174 172 #region IItem Members 175 public virtual newstring ItemDescription {173 public override string ItemDescription { 176 174 get { 177 175 if (item == null) … … 182 180 } 183 181 184 public virtual newImage ItemImage {182 public override Image ItemImage { 185 183 get { 186 184 if (item == null) … … 191 189 } 192 190 193 public virtual newstring ItemName {191 public override string ItemName { 194 192 get { 195 193 if (item == null) -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r7519 r7532 192 192 <Compile Include="HeuristicLab-3.3\CollectObjectGraphTest.cs" /> 193 193 <Compile Include="HeuristicLab-3.3\ContentViewTests.cs" /> 194 <Compile Include="HeuristicLab-3.3\ToStringTest.cs" /> 194 195 <Compile Include="HeuristicLab-3.3\DeepCloneableCloningTest.cs" /> 195 196 <Compile Include="HeuristicLab-3.3\GeneticAlgorithmTest.cs" />
Note: See TracChangeset
for help on using the changeset viewer.