Assume that the back is using a JTextPane, and I would like to implement a view with a label. But how can I implement the view in Java? is that something like UIView on iPhone on the Java Swing? Thanks. 
Assume that the back is using a JTextPane, and I would like to implement
Share
If I understand correctly, you would like to display a
JLabelon top of aJTextPane. If so, use aJLayeredPane.Read the Swing tutorial on layered panes to learn how to use them.