I have a school project in witch I must create a new Pane that will show a child rotated to left. This should provide interactivity with mouse. For example if the child is a textbox, than, I must have something like this
JRotatedPane p = new JRotatedPane( new JTextBoxArea() ); Frame f. ...
f.add(p); f.show();
this should permit to edit, view and interact with editor, that is rotated to left.
I tried something but I don't have any positive results.