Esempio n. 1
0
		public InputMachine()
		{
			this.currentState = State.idle;
			this.currentCharSet = null;
			this.currentIndex = 0;

			this.selectionCallback = null;
			this.addCharacterCallback = null;
			this.deleteCallback = null;
		}
Esempio n. 2
0
		public void registerAddCharacterCallback(AddCharacterCallback cb)
		{
			this.addCharacterCallback = cb;
		}