//得到内建对象哈希表
this._commonObjects = this.str2hashtable("String,Boolean,DateTime,Int32,Int64,Exception,DataTable,DataReader");
//标记
this._tags = this.str2hashtable("",false);
//得到分割字符
this._wordDelimiters= " ,.?!;:/<>(){}[]"'rnt=+-|*%@#$^&";
//引用字符
this._quotation = this.str2hashtable(""");
//行注释字符
this._lineComment = "//";
//转义字符
this._escape = "";
//多行引用开始
this._commentOn = "/*";
//多行引用结束
this._commentOff = "*/";
//忽略词
this._ignore = "";
//是否处理标记
this._dealTag = false;
break;
case "java":
//是否大小写敏感
this._caseSensitive = true;
//得到关键字哈希表
this._keywords = this.str2hashtable("abstract,boolean,break,byte,case,catch,char,class,const,continue,default,do,double,else,extends,final,finally,float,for,goto,if,implements,import,instanceof,int,interface,long,native,new,package,private,protected,public,return,short,static,strictfp,super,switch,synchronized,this,throw,throws,transient,try,void,volatile,while");
//得到内建对象哈希表
this._commonObjects = this.str2hashtable("String,Boolean,DateTime,Int32,Int64,Exception,DataTable,DataReader");
//标记
this._tags = this.str2hashtable("",false);
//得到分割字符
this._wordDelimiters= " ,.?!;:/<>(){}[]"'rnt=+-|*%@#$^&";
//引用字符
this._quotation = this.str2hashtable(""");
//行注释字符
this._lineComment = "//";
//转义字符
this._escape = "";
//多行引用开始
this._commentOn = "/*";
//多行引用结束
this._commentOff = "*/";
//忽略词
this._ignore = "";
//是否处理标记
this._dealTag = false;
break;
case "vbs":
case "vb":
//是否大小写敏感
this._caseSensitive = false;
//得到关键字哈希表
this._keywords = this.str2hashtable("And,ByRef,ByVal,Call,Case,Class,Const,Dim,Do,Each,Else,ElseIf,Empty,End,Eqv,Erase,Error,Exit,Explicit,False,For,Function,Get,If,Imp,In,Is,Let,Loop,Mod,Next,Not,Nothing,Null,On,Option,Or,Private,Property,Public,Randomize,ReDim,Resume,Select,Set,Step,Sub,Then,To,True,Until,Wend,While,Xor,Anchor,Array,Asc,Atn,CBool,CByte,CCur,CDate,CDbl,Chr,CInt,CLng,Cos,CreateObject,CSng,CStr,Date,DateAdd,DateDiff,DatePart,DateSerial,DateValue,Day,Dictionary,Document,Element,Err,Exp,FileSystemObject,Filter,Fix,Int,Form,FormatCurrency,FormatDateTime,FormatNumber,FormatPercent,GetObject,Hex,Hour,InputBox,InStr,InstrRev,IsArray,IsDate,IsEmpty,IsNull,IsNumeric,IsObject,Join,LBound,LCase,Left,Len,Link,LoadPicture,Location,Log,LTrim,RTrim,Trim,Mid,Minute,Month,MonthName,MsgBox,Navigator,Now,Oct,Replace,Right,Rnd,Round,ScriptEngine,ScriptEngineBuildVersion,ScriptEngineMajorVersion,ScriptEngineMinorVersion,Second,Sgn,Sin,Space,Split,Sqr,StrComp,String,StrReverse,Tan,Time,TextStream,TimeSerial,TimeValue,TypeName,UBound,UCase,VarType,Weekday,WeekDayName,Year");










