MCPcopy Create free account
hub / github.com/xmlet/HtmlFlow / Task

Method Task

flowifier/src/test/java/htmlflow/test/model/Task.java:37–42  ·  view source on GitHub ↗
(String title, String description, Priority priority)

Source from the content-addressed store, hash-verified

35 private Status status;
36
37 public Task(String title, String description, Priority priority) {
38 this.title = title;
39 this.description = description;
40 this.priority = priority;
41 this.id = hashCode();
42 }
43
44 public Task(int id, String title, String description, Priority priority) {
45 this.title = title;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected