Small enhancements to libpit to facilitate pit-swing.

Added delete() and createNewProject(String) to Project class.
Added nicer toString() method to Category enum.
This commit is contained in:
Jonathan Bernard
2010-02-24 03:05:37 -06:00
parent 45516a5cd9
commit 60109087e5
11 changed files with 145 additions and 34 deletions

View File

@ -7,4 +7,10 @@ class MockProject extends Project {
public Issue createNewIssue(Map options) {
throw new UnsupportedOperationException()
}
public Project createNewProject(String name) {
throw new UnsupportedOperationException()
}
public boolean delete() { return true }
}