()
| 17 | this(jobTitle, null); |
| 18 | } |
| 19 | public String getTitle() { return title; } |
| 20 | public void setTitle(String newTitle) { |
| 21 | // Throws EmptyTitleException if newTitle is null: |
| 22 | title = Optional.ofNullable(newTitle) |
no outgoing calls
no test coverage detected