private void initilizeVars() { this.allKeys = new List<SoftKey>(); this.nonCharKeys = new List<SoftKey>(); this.numKeys = new List<SoftKey>(); this.wordPredictor = new WordPredictor(this); this.charKeys = new Dictionary<string, SoftKey>(); this.log.setWordPredictor(this.wordPredictor); // this.behaviorLog.setWordPredictor(this.wordPredictor); }
public void setWordPredictor(WordPredictor wordPredictor) { this.wordPredictor = wordPredictor; }