Skip to content

Commit

Permalink
Applied new keyword
Browse files Browse the repository at this point in the history
Attempting to override the IClass.Properties with the custom PropertyList
  • Loading branch information
tbm0115 committed Aug 18, 2024
1 parent fe28a6d commit 62144ae
Show file tree
Hide file tree
Showing 1,114 changed files with 1,114 additions and 1,114 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace {{ to_code_safe source.namespace }}
{{~ end ~}}

/// <inheritdoc />
public {{ code_name }}Properties Properties { get; } = new {{ code_name }}Properties();
public new {{ code_name }}Properties Properties { get; } = new {{ code_name }}Properties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="{{ code_name }}" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public sealed class ConditionClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservedConditionClass);

/// <inheritdoc />
public ConditionClassProperties Properties { get; } = new ConditionClassProperties();
public new ConditionClassProperties Properties { get; } = new ConditionClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ConditionClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public sealed class EventClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public EventClassProperties Properties { get; } = new EventClassProperties();
public new EventClassProperties Properties { get; } = new EventClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="EventClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class ObservableConditionClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ObservableConditionClassProperties Properties { get; } = new ObservableConditionClassProperties();
public new ObservableConditionClassProperties Properties { get; } = new ObservableConditionClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservableConditionClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class ObservableEventClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ObservableEventClassProperties Properties { get; } = new ObservableEventClassProperties();
public new ObservableEventClassProperties Properties { get; } = new ObservableEventClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservableEventClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservableMeasurementClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservableSampleClass);

/// <inheritdoc />
public ObservableMeasurementClassProperties Properties { get; } = new ObservableMeasurementClassProperties();
public new ObservableMeasurementClassProperties Properties { get; } = new ObservableMeasurementClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservableMeasurementClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class ObservableSampleClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ObservableSampleClassProperties Properties { get; } = new ObservableSampleClassProperties();
public new ObservableSampleClassProperties Properties { get; } = new ObservableSampleClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservableSampleClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservableStateClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservableEventClass);

/// <inheritdoc />
public ObservableStateClassProperties Properties { get; } = new ObservableStateClassProperties();
public new ObservableStateClassProperties Properties { get; } = new ObservableStateClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservableStateClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedConditionClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.ObservationClass);

/// <inheritdoc />
public ObservedConditionClassProperties Properties { get; } = new ObservedConditionClassProperties();
public new ObservedConditionClassProperties Properties { get; } = new ObservedConditionClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedConditionClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedEventClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.ObservationClass);

/// <inheritdoc />
public ObservedEventClassProperties Properties { get; } = new ObservedEventClassProperties();
public new ObservedEventClassProperties Properties { get; } = new ObservedEventClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedEventClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedFaultClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservedConditionClass);

/// <inheritdoc />
public ObservedFaultClassProperties Properties { get; } = new ObservedFaultClassProperties();
public new ObservedFaultClassProperties Properties { get; } = new ObservedFaultClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedFaultClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedMeasurementClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.SampleClass);

/// <inheritdoc />
public ObservedMeasurementClassProperties Properties { get; } = new ObservedMeasurementClassProperties();
public new ObservedMeasurementClassProperties Properties { get; } = new ObservedMeasurementClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedMeasurementClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedNormalClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservedConditionClass);

/// <inheritdoc />
public ObservedNormalClassProperties Properties { get; } = new ObservedNormalClassProperties();
public new ObservedNormalClassProperties Properties { get; } = new ObservedNormalClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedNormalClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedStateClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservedEventClass);

/// <inheritdoc />
public ObservedStateClassProperties Properties { get; } = new ObservedStateClassProperties();
public new ObservedStateClassProperties Properties { get; } = new ObservedStateClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedStateClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ObservedWarningClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AdditionalObservationTerms.ObservedConditionClass);

/// <inheritdoc />
public ObservedWarningClassProperties Properties { get; } = new ObservedWarningClassProperties();
public new ObservedWarningClassProperties Properties { get; } = new ObservedWarningClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ObservedWarningClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public sealed class SampleClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public SampleClassProperties Properties { get; } = new SampleClassProperties();
public new SampleClassProperties Properties { get; } = new SampleClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="SampleClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class AgentClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public AgentClassProperties Properties { get; } = new AgentClassProperties();
public new AgentClassProperties Properties { get; } = new AgentClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="AgentClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class AssetStroageClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public AssetStroageClassProperties Properties { get; } = new AssetStroageClassProperties();
public new AssetStroageClassProperties Properties { get; } = new AssetStroageClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="AssetStroageClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class DataSinkServiceGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.ServiceClass);

/// <inheritdoc />
public DataSinkServiceGeneralizationProperties Properties { get; } = new DataSinkServiceGeneralizationProperties();
public new DataSinkServiceGeneralizationProperties Properties { get; } = new DataSinkServiceGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="DataSinkServiceGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class DataSourceServiceGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.ServiceClass);

/// <inheritdoc />
public DataSourceServiceGeneralizationProperties Properties { get; } = new DataSourceServiceGeneralizationProperties();
public new DataSourceServiceGeneralizationProperties Properties { get; } = new DataSourceServiceGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="DataSourceServiceGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class MQTTSinkClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public MQTTSinkClassProperties Properties { get; } = new MQTTSinkClassProperties();
public new MQTTSinkClassProperties Properties { get; } = new MQTTSinkClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="MQTTSinkClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class MQTTSinkGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.SinkClass);

/// <inheritdoc />
public MQTTSinkGeneralizationProperties Properties { get; } = new MQTTSinkGeneralizationProperties();
public new MQTTSinkGeneralizationProperties Properties { get; } = new MQTTSinkGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="MQTTSinkGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class MQTTSourceClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public MQTTSourceClassProperties Properties { get; } = new MQTTSourceClassProperties();
public new MQTTSourceClassProperties Properties { get; } = new MQTTSourceClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="MQTTSourceClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class NCLinkClass : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.SinkClass);

/// <inheritdoc />
public NCLinkClassProperties Properties { get; } = new NCLinkClassProperties();
public new NCLinkClassProperties Properties { get; } = new NCLinkClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="NCLinkClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class OPCUASinkGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.SinkClass);

/// <inheritdoc />
public OPCUASinkGeneralizationProperties Properties { get; } = new OPCUASinkGeneralizationProperties();
public new OPCUASinkGeneralizationProperties Properties { get; } = new OPCUASinkGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="OPCUASinkGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class PipelineClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public PipelineClassProperties Properties { get; } = new PipelineClassProperties();
public new PipelineClassProperties Properties { get; } = new PipelineClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="PipelineClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class RestServiceGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.ServiceClass);

/// <inheritdoc />
public RestServiceGeneralizationProperties Properties { get; } = new RestServiceGeneralizationProperties();
public new RestServiceGeneralizationProperties Properties { get; } = new RestServiceGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="RestServiceGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class RestSinkClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public RestSinkClassProperties Properties { get; } = new RestSinkClassProperties();
public new RestSinkClassProperties Properties { get; } = new RestSinkClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="RestSinkClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class RestSourceClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public RestSourceClassProperties Properties { get; } = new RestSourceClassProperties();
public new RestSourceClassProperties Properties { get; } = new RestSourceClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="RestSourceClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class ServiceClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ServiceClassProperties Properties { get; } = new ServiceClassProperties();
public new ServiceClassProperties Properties { get; } = new ServiceClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ServiceClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class SinkClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public SinkClassProperties Properties { get; } = new SinkClassProperties();
public new SinkClassProperties Properties { get; } = new SinkClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="SinkClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class SourceClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public SourceClassProperties Properties { get; } = new SourceClassProperties();
public new SourceClassProperties Properties { get; } = new SourceClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="SourceClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class StorageServiceGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.ServiceClass);

/// <inheritdoc />
public StorageServiceGeneralizationProperties Properties { get; } = new StorageServiceGeneralizationProperties();
public new StorageServiceGeneralizationProperties Properties { get; } = new StorageServiceGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="StorageServiceGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class TransformationServiceGeneralization : IClass
public Type Generalization => typeof(Mtconnect.AgentArchitecture.ServiceClass);

/// <inheritdoc />
public TransformationServiceGeneralizationProperties Properties { get; } = new TransformationServiceGeneralizationProperties();
public new TransformationServiceGeneralizationProperties Properties { get; } = new TransformationServiceGeneralizationProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="TransformationServiceGeneralization" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class TransformtionClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public TransformtionClassProperties Properties { get; } = new TransformtionClassProperties();
public new TransformtionClassProperties Properties { get; } = new TransformtionClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="TransformtionClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public sealed class AssetClass : IClass
public Type Generalization => typeof(Mtconnect.Glossary.MTConnectTerms.AssetGeneralization);

/// <inheritdoc />
public AssetClassProperties Properties { get; } = new AssetClassProperties();
public new AssetClassProperties Properties { get; } = new AssetClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="AssetClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class ImportDescriptorClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ImportDescriptorClassProperties Properties { get; } = new ImportDescriptorClassProperties();
public new ImportDescriptorClassProperties Properties { get; } = new ImportDescriptorClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ImportDescriptorClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public sealed class PropertyMapClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public PropertyMapClassProperties Properties { get; } = new PropertyMapClassProperties();
public new PropertyMapClassProperties Properties { get; } = new PropertyMapClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="PropertyMapClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public sealed class ComponentConfigurationParametersClass : IClass
public Type Generalization => typeof(Mtconnect.AssetInformationModel.AssetClass);

/// <inheritdoc />
public ComponentConfigurationParametersClassProperties Properties { get; } = new ComponentConfigurationParametersClassProperties();
public new ComponentConfigurationParametersClassProperties Properties { get; } = new ComponentConfigurationParametersClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ComponentConfigurationParametersClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public sealed class ParameterClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ParameterClassProperties Properties { get; } = new ParameterClassProperties();
public new ParameterClassProperties Properties { get; } = new ParameterClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ParameterClass" />.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public sealed class ParameterSetClass : IClass
public Type Generalization => null;

/// <inheritdoc />
public ParameterSetClassProperties Properties { get; } = new ParameterSetClassProperties();
public new ParameterSetClassProperties Properties { get; } = new ParameterSetClassProperties();
IPropertyList IClass.Properties => Properties;
/// <summary>
/// Property list for <see cref="ParameterSetClass" />.
Expand Down
Loading

0 comments on commit 62144ae

Please sign in to comment.