Example usage for javax.swing.text.html HTMLEditorKit.BoldAction HTMLEditorKit.BoldAction

List of usage examples for javax.swing.text.html HTMLEditorKit.BoldAction HTMLEditorKit.BoldAction

Introduction

In this page you can find the example usage for javax.swing.text.html HTMLEditorKit.BoldAction HTMLEditorKit.BoldAction.

Prototype

HTMLEditorKit.BoldAction

Source Link

Usage

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);
    }
}