List of usage examples for javax.swing.text.html HTMLEditorKit.BoldAction HTMLEditorKit.BoldAction
HTMLEditorKit.BoldAction
From source file:net.java.sip.communicator.impl.gui.main.chat.ChatWritePanel.java
/** * Enables the bold style/* ww w .j av a 2 s.com*/ * @param b TRUE enable - FALSE disable */ public void setBoldStyleEnable(boolean b) { StyledEditorKit editorKit = (StyledEditorKit) editorPane.getEditorKit(); MutableAttributeSet attr = editorKit.getInputAttributes(); if (b && !StyleConstants.isBold(attr)) { setStyleConstant(new HTMLEditorKit.BoldAction(), StyleConstants.Bold); } }