Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public abstract class ForumMessageEncoder
  2. {
  3. protected abstract String getOpeningTag(Style style);
  4.  
  5. protected abstract String getClosingTag(Style style);
  6.  
  7. public abstract String escape(String msg);
  8.  
  9. public String getOpening(Style style, String... in)
  10. {
  11. return "";
  12. }
  13.  
  14. public String getClosing(Style style)
  15. {
  16. return "";
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement