PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Untitled
1 sec ago
Untitled
2 sec ago
Untitled
4 sec ago
stairctrl
Lua | 5 sec ago
ser_1369007728464
6 sec ago
Untitled
6 sec ago
Untitled
12 sec ago
Untitled
14 sec ago
rbpasker
By: a guest on
Oct 8th, 2007
| syntax:
Java
| size: 0.67 KB | hits: 92 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
package
net.pasker.BugAWT
;
import
java.awt.event.*
;
public
interface
BugListener
{
public
void
button1Press
(
ActionEvent
event
)
;
public
void
button2Press
(
ActionEvent
event
)
;
public
void
button3Press
(
ActionEvent
event
)
;
public
void
button4Press
(
ActionEvent
event
)
;
public
void
buttonUpPress
(
ActionEvent
event
)
;
public
void
buttonDownPress
(
ActionEvent
event
)
;
public
void
buttonLeftPress
(
ActionEvent
event
)
;
public
void
buttonRightPress
(
ActionEvent
event
)
;
public
void
slot1Changed
(
ActionEvent
event
)
;
public
void
slot2Changed
(
ActionEvent
event
)
;
public
void
slot3Changed
(
ActionEvent
event
)
;
public
void
slot4Changed
(
ActionEvent
event
)
;
}
create a
new version
of this paste
RAW Paste Data
package net.pasker.BugAWT; import java.awt.event.*; public interface BugListener { public void button1Press(ActionEvent event); public void button2Press(ActionEvent event); public void button3Press(ActionEvent event); public void button4Press(ActionEvent event); public void buttonUpPress(ActionEvent event); public void buttonDownPress(ActionEvent event); public void buttonLeftPress(ActionEvent event); public void buttonRightPress(ActionEvent event); public void slot1Changed(ActionEvent event); public void slot2Changed(ActionEvent event); public void slot3Changed(ActionEvent event); public void slot4Changed(ActionEvent event); }