Title / Description
Code 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
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code