Blame |
Last modification |
View Log
| RSS feed
package rene.gui;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
public class MyList
extends java.
awt.
List
{ public MyList (int n)
{ super(n);
if (Global.NormalFont!=null) setFont(Global.NormalFont);
if (Global.Background!=null) setBackground(Global.Background);
addKeyListener(this);
}
{ if (e.
getKeyCode()==
KeyEvent.
VK_SPACE)
}
}
}