Example #1
0
 public virtual void setTokenCreator(TokenCreator tokenCreator)
 {
     this.tokenCreator = tokenCreator;
 }
Example #2
0
 public virtual void setTokenObjectClass(string cl)
 {
     this.tokenCreator = new ReflectionBasedTokenCreator(this, cl);
 }
Example #3
0
		public virtual void  setTokenCreator(TokenCreator tokenCreator)
		{
			this.tokenCreator = tokenCreator;
		}
Example #4
0
 public CharScanner()
 {
     text         = new StringBuilder();
     tokenCreator = new CommonToken.CommonTokenCreator();
 }
Example #5
0
		public virtual void  setTokenObjectClass(string cl)
		{
			this.tokenCreator = new ReflectionBasedTokenCreator(this, cl);
		}