/**
  * The start of a CDATA section.
  *
  * @param augs Additional information that may include infoset augmentations
  * @exception XNIException Thrown by handler to signal an error.
  */
 public void startCDATA(Augmentations augs) throws XNIException {
   // only deal with CDATA boundaries within an annotation.
   if (fAnnotationDepth != -1) {
     schemaDOM.startAnnotationCDATA();
   }
 }