Guest User

Untitled

a guest
Jan 22nd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. public final void messageRoom (String message, Boolean bold, Color color) {
  2.  
  3. StyledDocument document = new DefaultStyledDocument();
  4. SimpleAttributeSet attributes = new SimpleAttributeSet();
  5.  
  6. if(bold) {
  7. attributes.addAttribute(StyleConstants.CharacterConstants.Bold, Boolean.TRUE);
  8. }
  9. attributes.addAttribute(StyleConstants.CharacterConstants.Foreground, color);
  10.  
  11. try {
  12. document.insertString(document.getLength(), message, attributes);
  13. } catch (BadLocationException ex) {
  14. System.out.println("ex");
  15. }
  16.  
  17. chatArea.setStyledDocument(document);
  18. }
Add Comment
Please, Sign In to add comment