You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2005/06/05 21:22:27 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/jaxp/validation AbstractXMLSchema.java

mrglavas    2005/06/05 12:22:27

  Modified:    java/src/org/apache/xerces/jaxp/validation
                        AbstractXMLSchema.java
  Log:
  Marking a few methods as final.
  
  Revision  Changes    Path
  1.3       +3 -3      xml-xerces/java/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java
  
  Index: AbstractXMLSchema.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractXMLSchema.java	22 May 2005 20:20:00 -0000	1.2
  +++ AbstractXMLSchema.java	5 Jun 2005 19:22:27 -0000	1.3
  @@ -36,14 +36,14 @@
       /* 
        * @see javax.xml.validation.Schema#newValidator()
        */
  -    public Validator newValidator() {
  +    public final Validator newValidator() {
           return new ValidatorImpl(this);
       }
   
       /* 
        * @see javax.xml.validation.Schema#newValidatorHandler()
        */
  -    public ValidatorHandler newValidatorHandler() {
  +    public final ValidatorHandler newValidatorHandler() {
           // TODO: Integrate ValidatorHandlerImpl from the RI
           // return new ValidatorHandlerImpl(this);
           return null;
  
  
  

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