Set the Http Request Method of a JEditor/JTextPane
I cannot override setPage() to accomplish this, because setPage uses several variables with private access in JEditorPane and no get/set methods.
I cannot override getStream (Which JEditorPane uses in SetPage), because it uses a variable which has private access in JEditorPane (pageProperties) and for which there are not getting/setting methods.
I cannot extend URL and override openConnection; URL is final.
Any ideas?

