summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/TextField2.inc
blob: 3e9f7500ff6ee5fe6122a889073a14291e9fe9d8 (plain)
1
2
3
4
5
6
7
/* TextField2.inc */

public void textValueChanged(TextEvent event)
{
  TextField tf = (TextField)event.getSource();
  System.out.println("textValueChanged: "+tf.getText());
}