Skip to content

Commit

Permalink
Generate empty constructors for testing (#27)
Browse files Browse the repository at this point in the history
* fixes

* Generate empty constructors for testing
  • Loading branch information
adamhathcock committed Jul 1, 2024
1 parent 9e36d2b commit 1b31dc1
Show file tree
Hide file tree
Showing 1,375 changed files with 2,824 additions and 509 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class ACADExportOptions : Autodesk.Revit.DB.BaseExportOptions
{
public ACADExportOptions() { }

public virtual Autodesk.Revit.DB.Color HatchBackgroundColor
{
get => throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class APIObject : System.IDisposable
{
public APIObject() { }

public virtual void Dispose() => throw new System.NotImplementedException();

public virtual System.Boolean IsReadOnly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class ATFBaseExportOptions : System.IDisposable
{
public ATFBaseExportOptions() { }

public virtual void Dispose() => throw new System.NotImplementedException();

public virtual System.Boolean IsValidObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class ATFTranslationServiceData : Autodesk.Revit.DB.ExternalService.IExternalData, System.IDisposable
{
public ATFTranslationServiceData() { }

public virtual void Dispose() => throw new System.NotImplementedException();

public virtual System.Boolean IsValidObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ namespace Autodesk.Revit.DB;

public partial class AXMImportOptions : Autodesk.Revit.DB.BaseImportOptions
{
public AXMImportOptions(Autodesk.Revit.DB.AXMImportOptions option) => throw new System.NotImplementedException();
public AXMImportOptions() { }

public AXMImportOptions() => throw new System.NotImplementedException();
public AXMImportOptions(Autodesk.Revit.DB.AXMImportOptions option) => throw new System.NotImplementedException();

public virtual System.Boolean ImportLevels
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class AdaptiveComponentFamilyUtils
{
public AdaptiveComponentFamilyUtils() { }

public static System.Boolean IsAdaptiveComponentFamily(Autodesk.Revit.DB.Family family) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class AdaptiveComponentInstanceUtils
{
public AdaptiveComponentInstanceUtils() { }

public static System.Boolean IsAdaptiveFamilySymbol(Autodesk.Revit.DB.FamilySymbol famSymb) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB;

public partial class AddInId : System.IDisposable
{
public AddInId() { }

public AddInId(System.Guid val) => throw new System.NotImplementedException();

public virtual System.String GetAddInNameFromDocument(Autodesk.Revit.DB.Document aDoc) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ namespace Autodesk.Revit.DB;

public partial class AlphanumericRevisionSettings : System.IDisposable
{
public AlphanumericRevisionSettings() { }

public AlphanumericRevisionSettings(
System.Collections.Generic.IList<System.String> sequence,
System.String prefix,
System.String suffix
) => throw new System.NotImplementedException();

public AlphanumericRevisionSettings() => throw new System.NotImplementedException();

public AlphanumericRevisionSettings(Autodesk.Revit.DB.AlphanumericRevisionSettings other) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayColorEntry : System.IDisposable
{
public AnalysisDisplayColorEntry() { }

public AnalysisDisplayColorEntry(Autodesk.Revit.DB.Color color) => throw new System.NotImplementedException();

public AnalysisDisplayColorEntry(Autodesk.Revit.DB.Color color, System.Double value) =>
throw new System.NotImplementedException();

public AnalysisDisplayColorEntry() => throw new System.NotImplementedException();

public virtual System.Boolean IsEqual(Autodesk.Revit.DB.Analysis.AnalysisDisplayColorEntry other) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayColorSettings : System.IDisposable
{
public AnalysisDisplayColorSettings() => throw new System.NotImplementedException();
public AnalysisDisplayColorSettings() { }

public AnalysisDisplayColorSettings(Autodesk.Revit.DB.Analysis.AnalysisDisplayColorSettings other) =>
throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayColoredSurfaceSettings : System.IDisposable
{
public AnalysisDisplayColoredSurfaceSettings() => throw new System.NotImplementedException();
public AnalysisDisplayColoredSurfaceSettings() { }

public AnalysisDisplayColoredSurfaceSettings(
Autodesk.Revit.DB.Analysis.AnalysisDisplayColoredSurfaceSettings other
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayDeformedShapeSettings : System.IDisposable
{
public AnalysisDisplayDeformedShapeSettings() => throw new System.NotImplementedException();
public AnalysisDisplayDeformedShapeSettings() { }

public AnalysisDisplayDeformedShapeSettings(Autodesk.Revit.DB.Analysis.AnalysisDisplayDeformedShapeSettings other) =>
throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayDiagramSettings : System.IDisposable
{
public AnalysisDisplayDiagramSettings() => throw new System.NotImplementedException();
public AnalysisDisplayDiagramSettings() { }

public AnalysisDisplayDiagramSettings(Autodesk.Revit.DB.Analysis.AnalysisDisplayDiagramSettings other) =>
throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayLegend : Autodesk.Revit.DB.Element
{
public AnalysisDisplayLegend() { }

public virtual System.Double Height
{
get => throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayLegendSettings : System.IDisposable
{
public AnalysisDisplayLegendSettings() => throw new System.NotImplementedException();
public AnalysisDisplayLegendSettings() { }

public AnalysisDisplayLegendSettings(Autodesk.Revit.DB.Analysis.AnalysisDisplayLegendSettings other) =>
throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayMarkersAndTextSettings : System.IDisposable
{
public AnalysisDisplayMarkersAndTextSettings() => throw new System.NotImplementedException();
public AnalysisDisplayMarkersAndTextSettings() { }

public AnalysisDisplayMarkersAndTextSettings(
Autodesk.Revit.DB.Analysis.AnalysisDisplayMarkersAndTextSettings other
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayStyle : Autodesk.Revit.DB.Element
{
public AnalysisDisplayStyle() { }

public static Autodesk.Revit.DB.Analysis.AnalysisDisplayStyle CreateAnalysisDisplayStyle(
Autodesk.Revit.DB.Document document,
System.String name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisDisplayVectorSettings : System.IDisposable
{
public AnalysisDisplayVectorSettings() => throw new System.NotImplementedException();
public AnalysisDisplayVectorSettings() { }

public AnalysisDisplayVectorSettings(Autodesk.Revit.DB.Analysis.AnalysisDisplayVectorSettings other) =>
throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class AnalysisResultSchema : System.IDisposable
{
public AnalysisResultSchema() { }

public AnalysisResultSchema(System.String name, System.String description) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class BuildingEnvelopeAnalyzer : System.IDisposable
{
public BuildingEnvelopeAnalyzer() { }

public static Autodesk.Revit.DB.Analysis.BuildingEnvelopeAnalyzer Create(
Autodesk.Revit.DB.Document document,
Autodesk.Revit.DB.Analysis.BuildingEnvelopeAnalyzerOptions options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class BuildingEnvelopeAnalyzerOptions : System.IDisposable
{
public BuildingEnvelopeAnalyzerOptions() => throw new System.NotImplementedException();
public BuildingEnvelopeAnalyzerOptions() { }

public virtual void Dispose() => throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class ConceptualConstructionType : Autodesk.Revit.DB.ElementType
{
public ConceptualConstructionType() { }

public static Autodesk.Revit.DB.ElementId GetWallConstructionType(
Autodesk.Revit.DB.Document ccda,
Autodesk.Revit.DB.Analysis.ConceptualConstructionWallType typeEnum
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class ConceptualSurfaceType : Autodesk.Revit.DB.Element
{
public ConceptualSurfaceType() { }

public static Autodesk.Revit.DB.Analysis.ConceptualSurfaceType GetByMassSubCategoryId(
Autodesk.Revit.DB.Document cda,
Autodesk.Revit.DB.ElementId massSubCategoryId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyAnalysisDetailModel : Autodesk.Revit.DB.Element
{
public EnergyAnalysisDetailModel() { }

public static Autodesk.Revit.DB.Analysis.EnergyAnalysisDetailModel Create(
Autodesk.Revit.DB.Document document,
Autodesk.Revit.DB.Analysis.EnergyAnalysisDetailModelOptions options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyAnalysisDetailModelOptions : System.IDisposable
{
public EnergyAnalysisDetailModelOptions() => throw new System.NotImplementedException();
public EnergyAnalysisDetailModelOptions() { }

public virtual void Dispose() => throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyAnalysisOpening : Autodesk.Revit.DB.Element
{
public EnergyAnalysisOpening() { }

public virtual Autodesk.Revit.DB.Analysis.EnergyAnalysisSurface GetAnalyticalSurface() =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyAnalysisSpace : Autodesk.Revit.DB.Element
{
public EnergyAnalysisSpace() { }

public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.Analysis.EnergyAnalysisSurface> GetAnalyticalSurfaces() =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyAnalysisSurface : Autodesk.Revit.DB.Element
{
public EnergyAnalysisSurface() { }

public virtual Autodesk.Revit.DB.Analysis.EnergyAnalysisSpace GetAnalyticalSpace() =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class EnergyDataSettings : Autodesk.Revit.DB.Element
{
public EnergyDataSettings() { }

public static Autodesk.Revit.DB.Analysis.EnergyDataSettings GetFromDocument(Autodesk.Revit.DB.Document cda) =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class FieldDomainPoints : System.IDisposable
{
public FieldDomainPoints() { }

public virtual void Dispose() => throw new System.NotImplementedException();

public virtual System.Boolean IsValidObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class FieldDomainPointsByParameter : Autodesk.Revit.DB.Analysis.FieldDomainPoints
{
public FieldDomainPointsByParameter() { }

public FieldDomainPointsByParameter(System.Collections.Generic.IList<System.Double> points) =>
throw new System.NotImplementedException();
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class FieldDomainPointsByUV : Autodesk.Revit.DB.Analysis.FieldDomainPoints
{
public FieldDomainPointsByUV() { }

public FieldDomainPointsByUV(
System.Collections.Generic.IList<Autodesk.Revit.DB.UV> points,
System.Collections.Generic.ICollection<System.Double> uCoordinates,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class FieldDomainPointsByXYZ : Autodesk.Revit.DB.Analysis.FieldDomainPoints
{
public FieldDomainPointsByXYZ() { }

public FieldDomainPointsByXYZ(System.Collections.Generic.IList<Autodesk.Revit.DB.XYZ> points) =>
throw new System.NotImplementedException();
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class FieldValues : System.IDisposable
{
public FieldValues() { }

public FieldValues(Autodesk.Revit.DB.Analysis.FieldValues otherObject) => throw new System.NotImplementedException();

public FieldValues(System.Collections.Generic.IList<Autodesk.Revit.DB.Analysis.VectorAtPoint> vectorAtPoint) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class GenericZone : Autodesk.Revit.DB.Element
{
public GenericZone() { }

public static Autodesk.Revit.DB.Analysis.GenericZone Create(
Autodesk.Revit.DB.Document doc,
System.String name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class GenericZoneDomainData : System.IDisposable
{
public GenericZoneDomainData() { }

public virtual void Dispose() => throw new System.NotImplementedException();

public virtual System.Boolean IsValidObject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class HVACLoadBuildingType : Autodesk.Revit.DB.Analysis.HVACLoadType
{
public HVACLoadBuildingType() { }

public static Autodesk.Revit.DB.Analysis.HVACLoadBuildingType Create(
Autodesk.Revit.DB.Document document,
System.String name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class HVACLoadSpaceType : Autodesk.Revit.DB.Analysis.HVACLoadType
{
public HVACLoadSpaceType() { }

public static Autodesk.Revit.DB.Analysis.HVACLoadSpaceType Create(
Autodesk.Revit.DB.Document document,
System.String name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class HVACLoadType : Autodesk.Revit.DB.Element
{
public HVACLoadType() { }

public virtual System.Double DehumidificationSetPoint
{
get => throw new System.NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class MassEnergyAnalyticalModel : Autodesk.Revit.DB.Element
{
public MassEnergyAnalyticalModel() { }

public virtual System.Collections.Generic.ICollection<Autodesk.Revit.DB.ElementId> GetMassZoneIds() =>
throw new System.NotImplementedException();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace Autodesk.Revit.DB.Analysis;

public partial class MassGBXMLExportOptions : System.IDisposable
{
public MassGBXMLExportOptions() { }

public MassGBXMLExportOptions(System.Collections.Generic.IList<Autodesk.Revit.DB.ElementId> massZoneIds) =>
throw new System.NotImplementedException();

Expand Down
Loading

0 comments on commit 1b31dc1

Please sign in to comment.