List of usage examples for javax.swing JEditorPane copy
public void copy()
From source file:net.java.sip.communicator.impl.gui.main.chat.ChatPanel.java
/** * Copies the selected write panel content to the clipboard. *//*from w w w .j a va 2 s .c o m*/ public void copyWriteArea() { JEditorPane editorPane = this.writeMessagePanel.getEditorPane(); editorPane.copy(); }