Example #1
0
 public UTF8Prober()
 {
     numOfMBChar = 0;
     codingSM    = new CodingStateMachine(new UTF8SMModel());
     Reset();
 }
Example #2
0
 public EUCKRProber()
 {
     codingSM             = new CodingStateMachine(new EUCKRSMModel());
     distributionAnalyser = new EUCKRDistributionAnalyser();
     Reset();
 }
Example #3
0
 public EUCTWProber()
 {
     this.codingSM             = new CodingStateMachine(new EUCTWSMModel());
     this.distributionAnalyser = new EUCTWDistributionAnalyser();
     this.Reset();
 }
Example #4
0
 public Big5Prober()
 {
     this.codingSM             = new CodingStateMachine(new BIG5SMModel());
     this.distributionAnalyser = new BIG5DistributionAnalyser();
     this.Reset();
 }