コード例 #1
0
ファイル: TextPanel.java プロジェクト: dimitarp/basex
  /**
   * Copies the selected text to the clipboard.
   *
   * @return true if text was copied
   */
  private boolean copy() {
    final String txt = editor.copy();
    if (txt.isEmpty()) return false;

    // copy selection to clipboard
    BaseXLayout.copy(txt);
    return true;
  }
コード例 #2
0
ファイル: ProjectList.java プロジェクト: LukasK/basex
 @Override
 public void execute() {
   BaseXLayout.copy(selectedValue());
 }