If there is a JEditorPane in a JScrollPane, how can you get the editor from the scrollpane?
JEditorPane
JScrollPane
I tried scrollPane.getComponents()
scrollPane.getComponents()
JViewport viewport = scrollPane.getViewport(); JEditorPane editorPane = (JEditorPane)viewport.getView();