1 54 package org.w3c.tidy; 55 56 60 public class ValidUTF8Sequence 61 { 62 63 66 int lowChar; 67 68 71 int highChar; 72 73 76 int numBytes; 77 78 81 char[] validBytes = new char[8]; 82 83 90 public ValidUTF8Sequence(int lowChar, int highChar, int numBytes, char[] validBytes) 91 { 92 this.lowChar = lowChar; 93 this.highChar = highChar; 94 this.numBytes = numBytes; 95 this.validBytes = validBytes; 96 } 97 98 } 99 | Popular Tags |