About JEditorPane?

hi, i just want to ask if i can put image/icon to a JEditorPane? what method or is there a constructor to this? Thank you..
[130 byte] By [strider_hiryu007a] at [2007-11-27 9:21:07]
# 1

You can add a JLabel which can have an image icon on it. To do this you would do something like

label = new JLabel( new ImageIcon("Path/to/Icon" );

label.setLocation(200, 200);

label.setSize( label.getPreferredSize() );

JEditorPane.add(label);

_helloWorld_a at 2007-7-12 22:14:45 > top of Java-index,Java Essentials,New To Java...
# 2
will you be able to add a action event listener to it, so i can use it as a button?i tried to make a class the extends JButton to have a image on it, but it became just standard button size.
senseoa at 2007-7-12 22:14:45 > top of Java-index,Java Essentials,New To Java...