forked from Hansoft/Hansoft-ObjectWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBugTracker.cs
More file actions
66 lines (59 loc) · 1.52 KB
/
BugTracker.cs
File metadata and controls
66 lines (59 loc) · 1.52 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HPMSdk;
namespace Hansoft.ObjectWrapper
{
/// <summary>
/// Represents the QA view in Hansoft.
/// </summary>
public class BugTracker : ProjectView
{
internal static BugTracker GetBugTracker(HPMUniqueID uniqueID)
{
return new BugTracker(uniqueID);
}
private BugTracker(HPMUniqueID uniqueID)
: base(uniqueID)
{
}
/// <summary>
/// All bugs in the project.
/// </summary>
public override List<HansoftItem> Children
{
get
{
return new List<HansoftItem>(MainProject.Bugs);
}
}
/// <summary>
/// All bugs in the project.
/// </summary>
public override List<HansoftItem> DeepChildren
{
get
{
return Children;
}
}
/// <summary>
/// Returns a string useful for referring to the QA view to an end user. Calls to the Setter will be ignored.
/// </summary>
public override string Name
{
get
{
// TODO: Get rid of hardcoded string
return "QA Project";
}
set { }
}
internal override EHPMReportViewType ReportViewType
{
get { return EHPMReportViewType.AllBugsInProject; }
}
}
}