01: /*
02: * ClipboardSupport.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.interfaces;
13:
14: /**
15: *
16: * @author support@sql-workbench.net
17: */
18: public interface ClipboardSupport {
19: /**
20: * Copy the currently selected contents into the clipboard
21: */
22: void copy();
23:
24: /**
25: * Select the entire Text
26: */
27: void selectAll();
28:
29: /**
30: * Delete the currently selected text without copying it
31: * into the system clipboard
32: */
33: void clear();
34:
35: /**
36: * Delete the currently selected text and put it into
37: * the clipboard
38: */
39: void cut();
40:
41: /**
42: * Paste the contents of the clipboard into
43: * the component
44: */
45: void paste();
46: }
|