-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathactionhandler.html
60 lines (50 loc) · 1.36 KB
/
actionhandler.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head><title>BeanShell Example - A scripted ActionListener Interface</title></head>
<body bgcolor="#ffffff">
<a href="../home.html"><img border=0 src="../images/homebutton.gif"><br>Home</a>
<p>
<h1>A scripted ActionListener Interface</h1>
<p>
<center>
<table width=100% cellpadding=5>
<tr><td bgcolor="#afafac">
<font size=+1><a href="CallScriptedActionHandler.java">CallScriptedActionHandler.java</a> - Link a button to a scripted ActionListener</font>
</td></tr>
<tr><td bgcolor="#cfcfcc">
<pre>
import javax.swing.*;
import java.awt.event.ActionListener;
import bsh.Interpreter;
public class CallScriptedActionHandler {
public static void main( String [] args ) throws Exception {
JButton button = new JButton("MyButton");
button.addActionListener(
(ActionListener)new Interpreter().source("actionHandler.bsh") );
JFrame f = new JFrame();
f.getContentPane().add( button );
f.show();
}
}
</pre>
</td></tr>
</table>
</center>
<p>
<p>
<center>
<table width=100% cellpadding=5>
<tr><td bgcolor="#afefac">
<font size=+1><a href="actionHandler.bsh">actionHandler.bsh</a> - The scripted ActionListener</font>
</td></tr>
<tr><td bgcolor="#cfefcc">
<pre>
import java.awt.event.ActionListener;
actionPerformed( e ) {
print("Button Pressed: " + e);
}
return (ActionListener)this;
</pre>
</td></tr>
</table>
</center>
<p>