blob: ecb7b9a97cf1b5e4e1cce6a518df5f0ae263efb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* */ package NET.worlds.scape;
/* */
/* */ import NET.worlds.console.Console;
/* */ import NET.worlds.console.GammaFrame;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ class PasteWidget
/* */ extends ClickWidget
/* */ {
/* */ private static final long serialVersionUID = 1L;
/* */
/* */ public PasteWidget(ToolBar toolbar)
/* */ {
/* 23 */ super(toolbar, "paste.gif", Console.message("Paste"));
/* */ }
/* */
/* */ public void perform()
/* */ {
/* 28 */ Console.getFrame().getEditTile().paste();
/* */ }
/* */ }
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\PasteWidget.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|