留言板模块源码
源代码在线查看: message.java
package com.ibm.guestbook.model;
public class Message {
private int id;
private String title;
private String context;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context;
}
public Message(String title, String context) {
this.title = title;
this.context = context;
}
}