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

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