예제 #1
0
파일: GUI.java 프로젝트: sametkaya/BLM305
 public void setMessage(Quotation q) {
   msg = q;
   who.setText(q.author() + " " + q.year());
   txt.setText(q.text());
   ref.setText(q.reference());
 }
예제 #2
0
파일: GUI.java 프로젝트: sametkaya/BLM305
 public String message() {
   return msg.text();
 }