-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIDotNetSource.cs
More file actions
71 lines (58 loc) · 2.34 KB
/
IDotNetSource.cs
File metadata and controls
71 lines (58 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020-2023 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.DotNet
{
/// <summary>
/// The source point in which dot net models are loaded.
/// </summary>
public interface IDotNetSource : IDotNetModel, IParent, ILookup
{
/// <summary>
/// The namespaces that are used as references to access other libraries not hosted in the source document.
/// </summary>
IReadOnlyList<IDotNetNamespaceReference> NamespaceReferences { get; }
/// <summary>
/// The interfaces that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetInterface> Interfaces { get; }
/// <summary>
/// The classes that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetClass> Classes { get; }
/// <summary>
/// The structures that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetStructure> Structures { get; }
/// <summary>
/// The records that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetRecord> Records { get; }
/// <summary>
/// The record structures that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetRecordStructure> RecordStructures { get; }
/// <summary>
/// The delegates that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetDelegate> Delegates { get; }
/// <summary>
/// The enumerations that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetEnum> Enums { get; }
/// <summary>
/// The namespaces that were defined in the source.
/// </summary>
IReadOnlyList<IDotNetNamespace> Namespaces { get; }
/// <summary>
/// Flag that determines if the source code was hosted in a project.
/// </summary>
bool HostedInProject { get; }
/// <summary>
/// The name of the project the source is hosted in. This will be null if this source is not hosted in a project.
/// </summary>
string ProjectName { get; }
}
}