1 package org.directwebremoting.webwork; 2 3 8 public class DefaultAjaxTextResult implements AjaxTextResult 9 { 10 private String m_text; 11 12 17 public DefaultAjaxTextResult() 18 { 19 } 20 21 26 public DefaultAjaxTextResult(String text) 27 { 28 m_text = text; 29 } 30 31 34 public String getText() 35 { 36 return m_text; 37 } 38 39 44 public void setText(String text) 45 { 46 m_text = text; 47 } 48 49 52 public String toString() 53 { 54 return "[AjaxTextResult: '" + m_text + "']"; 55 } 56 57 } 58 | Popular Tags |