JEditTextArea.java 文件源码

java
阅读 29 收藏 0 点赞 0 评论 0

项目:rapidminer 作者:
/**
 * Places the selected text into the clipboard.
 */
public void copy() {
    if (selectionStart != selectionEnd) {
        Clipboard clipboard = getToolkit().getSystemClipboard();

        String selection = getSelectedText();

        int repeatCount = inputHandler.getRepeatCount();
        StringBuffer buf = new StringBuffer();
        for (int i = 0; i < repeatCount; i++) {
            buf.append(selection);
        }

        clipboard.setContents(new StringSelection(buf.toString()), null);
    }
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号