Changeset 4658
- Timestamp:
- 10/29/10 14:48:48 (14 years ago)
- Location:
- branches/CloningRefactoring
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableClassAttribute.cs
r4068 r4658 51 51 public StorableClassAttribute() { } 52 52 53 /// <summary> 54 /// Checks if the <see cref="StorableClassAttribute"/> is present on a type. 55 /// </summary> 56 /// <param name="type">The type which should be checked for the <see cref="StorableClassAttribute"/></param> 57 /// <returns></returns> 58 public static bool IsStorableClass(Type type) { 59 object[] attribs = type.GetCustomAttributes(typeof(StorableClassAttribute), false); 60 return attribs.Length > 0; 61 } 62 53 63 } 54 64 } -
branches/CloningRefactoring/HeuristicLab/3.3/Tests/HeuristicLab-3.3.Tests.csproj
r4634 r4658 127 127 <Compile Include="Properties\AssemblyInfo.cs" /> 128 128 <Compile Include="GeneticAlgorithmTest.cs" /> 129 <Compile Include="StorableConstructorTest.cs" /> 129 130 </ItemGroup> 130 131 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.