1 11 package org.jboss.portlet.forums.model; 12 13 14 21 public interface Message 22 { 23 28 public String getSubject(); 29 30 35 public void setSubject(String subject); 36 37 42 public String getText(); 43 44 49 public void setText(String text); 50 51 56 public boolean getBBCodeEnabled(); 57 58 63 public void setBBCodeEnabled(boolean BBCodeEnabled); 64 65 70 public boolean getHTMLEnabled(); 71 72 77 public void setHTMLEnabled(boolean HTMLEnabled); 78 79 84 public boolean getSmiliesEnabled(); 85 86 91 public void setSmiliesEnabled(boolean smiliesEnabled); 92 93 98 public boolean getSignatureEnabled(); 99 100 105 public void setSignatureEnabled(boolean signatureEnabled); 106 } | Popular Tags |