You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by el...@apache.org on 2003/03/24 22:56:14 UTC

cvs commit: xml-xerces/java/samples/sax Counter.java

elena       2003/03/24 13:56:14

  Modified:    java/samples/sax Counter.java
  Log:
  Issue warnings for unsupported features
  
  Revision  Changes    Path
  1.10      +7 -4      xml-xerces/java/samples/sax/Counter.java
  
  Index: Counter.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/sax/Counter.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Counter.java	30 May 2002 18:28:36 -0000	1.9
  +++ Counter.java	24 Mar 2003 21:56:14 -0000	1.10
  @@ -509,7 +509,8 @@
                   parser.setFeature(SCHEMA_VALIDATION_FEATURE_ID, schemaValidation);
               }
               catch (SAXNotRecognizedException e) {
  -                // ignore
  +                System.err.println("warning: Parser does not support feature ("+SCHEMA_VALIDATION_FEATURE_ID+")");
  +
               }
               catch (SAXNotSupportedException e) {
                   System.err.println("warning: Parser does not support feature ("+SCHEMA_VALIDATION_FEATURE_ID+")");
  @@ -518,7 +519,8 @@
                   parser.setFeature(SCHEMA_FULL_CHECKING_FEATURE_ID, schemaFullChecking);
               }
               catch (SAXNotRecognizedException e) {
  -                // ignore
  +                System.err.println("warning: Parser does not support feature ("+SCHEMA_FULL_CHECKING_FEATURE_ID+")");
  +
               }
               catch (SAXNotSupportedException e) {
                   System.err.println("warning: Parser does not support feature ("+SCHEMA_FULL_CHECKING_FEATURE_ID+")");
  @@ -527,7 +529,8 @@
                   parser.setFeature(DYNAMIC_VALIDATION_FEATURE_ID, dynamicValidation);
               }
               catch (SAXNotRecognizedException e) {
  -                // ignore
  +                System.err.println("warning: Parser does not support feature ("+DYNAMIC_VALIDATION_FEATURE_ID+")");
  +
               }
               catch (SAXNotSupportedException e) {
                   System.err.println("warning: Parser does not support feature ("+DYNAMIC_VALIDATION_FEATURE_ID+")");
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org