aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs56
1 files changed, 0 insertions, 56 deletions
diff --git a/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs b/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
index 7ad362c12..4b94f24af 100644
--- a/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
+++ b/Software/Visual_Studio/Tango.BL/ValueObjects/HardwareConfiguration.cs
@@ -10,72 +10,32 @@ using Tango.Core;
namespace Tango.BL.ValueObjects
{
- /// <summary>
- /// Represents a machine hardware configuration (overrides) that can be embeeded as a string in the HARDWARE_CONFIGURATION field of a machine configuration.
- /// </summary>
public class HardwareConfiguration
{
- /// <summary>
- /// Represents a hardware configuration parameter.
- /// </summary>
public class HardwareConfigurationParameter
{
- /// <summary>
- /// Gets or sets the name of the component.
- /// </summary>
public String ComponentName { get; set; }
-
- /// <summary>
- /// Gets or sets the name of the parameter.
- /// </summary>
public String ParameterName { get; set; }
-
- /// <summary>
- /// Gets or sets the value.
- /// </summary>
public Object Value { get; set; }
- /// <summary>
- /// Returns a <see cref="System.String" /> that represents this instance.
- /// </summary>
- /// <returns>
- /// A <see cref="System.String" /> that represents this instance.
- /// </returns>
public override string ToString()
{
return $"{ParameterName}: {Value}";
}
}
- /// <summary>
- /// Gets or sets the parameters.
- /// </summary>
public List<HardwareConfigurationParameter> Parameters { get; set; }
- /// <summary>
- /// Initializes a new instance of the <see cref="HardwareConfiguration"/> class.
- /// </summary>
public HardwareConfiguration()
{
Parameters = new List<HardwareConfigurationParameter>();
}
- /// <summary>
- /// Merge this hardware configuration to the specified hardware version which will result in a new instance of hardware version.
- /// </summary>
- /// <param name="hw">The hw.</param>
- /// <returns></returns>
public HardwareVersion Merge(HardwareVersion hw)
{
return Merge(this, hw);
}
- /// <summary>
- /// Merge the specified hardware configuration to the specified hardware version which will result in a new instance of hardware version.
- /// </summary>
- /// <param name="config">The configuration.</param>
- /// <param name="hw">The hw.</param>
- /// <returns></returns>
public static HardwareVersion Merge(HardwareConfiguration config, HardwareVersion hw)
{
var cloned = hw.Clone();
@@ -91,13 +51,6 @@ namespace Tango.BL.ValueObjects
return cloned;
}
- /// <summary>
- /// Merges a hardware component collection.
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="config">The configuration.</param>
- /// <param name="collection">The collection.</param>
- /// <param name="funcProp">The function property.</param>
private static void MergeCollection<T>(HardwareConfiguration config, SynchronizedObservableCollection<T> collection, Func<T, String> funcProp)
{
foreach (var component in collection)
@@ -117,20 +70,11 @@ namespace Tango.BL.ValueObjects
}
}
- /// <summary>
- /// Converts this hardware configuration to a json string.
- /// </summary>
- /// <returns></returns>
public String ToJson()
{
return JsonConvert.SerializeObject(this);
}
- /// <summary>
- /// Creates an instance of <see cref="HardwareConfiguration"/> from the specified json string.
- /// </summary>
- /// <param name="json">The json.</param>
- /// <returns></returns>
public static HardwareConfiguration FromJson(String json)
{
if (json != null)