| Home >> All >> jcurses >> [ event Javadoc ] |
Source code: jcurses/event/ValueChangedEvent.java
1 package jcurses.event; 2 3 import jcurses.widgets.Widget; 4 5 /** 6 * Instances of this class are generated by widgets, that manage a value, 7 * an example is the textfield widget. Such events are generated, if an user has 8 * modified the value assosiated with the widget. 9 */ 10 public class ValueChangedEvent extends Event { 11 12 public ValueChangedEvent(Widget source) { 13 super(source); 14 } 15 16 }