예제 #1
0
 // returns true if the given character is
 // a valid high surrogate for a nameStartChar
 // with respect to the version of XML understood
 // by this scanner.
 protected boolean isValidNameStartHighSurrogate(int value) {
   return XML11Char.isXML11NameHighSurrogate(value);
 } // isValidNameStartHighSurrogate(int):  boolean
예제 #2
0
 // returns true if the given character is
 // a valid nameStartChar with respect to the version of
 // XML understood by this scanner.
 protected boolean isValidNameStartChar(int value) {
   return (XML11Char.isXML11NameStart(value));
 } // isValidNameStartChar(int):  boolean
예제 #3
0
 // returns true if the given character is
 // a valid NCName character with respect to the version of
 // XML understood by this scanner.
 protected boolean isValidNCName(int value) {
   return (XML11Char.isXML11NCName(value));
 } // isValidNCName(int):  boolean
예제 #4
0
 // returns true if the given character is not
 // valid or may not be used outside a character reference
 // with respect to the version of XML understood by this scanner.
 protected boolean isInvalidLiteral(int value) {
   return (!XML11Char.isXML11ValidLiteral(value));
 } // isInvalidLiteral(int):  boolean