test
Java
code posted
by
Benevides
created at 24 Jun 18:43
Edit
|
Back
1 2 3 4 |
public class TicketCategory { /* Declaration of fields */ /** * * The description of the of ticket category. * * */ private String description; /* Boilerplate getters and setters */ public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Override public String toString() { return description; } } - See more at: http://www.jboss.org/jdf/examples/ticket-monster/tutorial/DataPersistence/#sthash.s8ODsYvf.dpuf |
495 Bytes in 2 ms with coderay