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

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