-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
20 lines (17 loc) · 814 Bytes
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Verifier to see if file already exists
// Cannot be done on a single component, decide whether to create SubIssueID
/*
String text = ((JTextField) input).getText();
IssueID issueID = new IssueID(text);
SubIssueID subIssueID = new SubIssueID()
if (!issueID.equals(IssueID.INVALID_ISSUE_ID)) {
if (!TestCollection.findTest(issueID).equals(Test.NOT_FOUND)) {
JOptionPane.showMessageDialog(TestRecorderFormSwing.frame, "Issue ID already exists");
return false;
}
return true;
} else {
JOptionPane.showMessageDialog(TestRecorderFormSwing.frame, "Issue ID must have 3 characters");
return false;
}
*/