表示されている行の全幅を強調表示する JEditorPane を取得しようとしています。私が試したすべての例は、テキストの内容のみを強調しています。たとえば、次のようなコンテンツがある場合:
---------------------------------
|Here is some text |
|some more text |
---------------------------------
上のボックスで表される JEditorPane 内で、最初の行を強調表示すると、「Here is some text」(以下の [ と ] で表される) だけが強調表示されます。
---------------------------------
[Here is some text] |
|some more text |
---------------------------------
次のように JEditorPane の全幅を強調表示したいと思います。
---------------------------------
[Here is some text ]
|some more text |
---------------------------------
これを行う方法はありますか?