public interface VirtualInputDevice extends AutoCloseable
Examples of virtual input devices include the virtual keyboard and the Picker.
VirtualInputDevices should implement the AutoCloseable.close()
method to safely dispose of itself. Before displaying
the input device to the screen, it should call Form.setCurrentInputDevice(com.codename1.ui.VirtualInputDevice)
which will execute the AutoCloseable.close()
method of the the current input device.
close