List of usage examples for javax.swing JEditorPane paste
public void paste()
From source file:net.java.sip.communicator.impl.gui.main.chat.ChatPanel.java
/** * Pastes the content of the clipboard to the write area. *///from ww w . ja v a 2 s .co m public void paste() { JEditorPane editorPane = this.writeMessagePanel.getEditorPane(); editorPane.paste(); editorPane.requestFocus(); }