src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/validation/ConfigurableValidationState.java
changeset 47359 e1a6c0168741
parent 47216 71c04702a3d5
child 48409 5ab69533994b
equal deleted inserted replaced
47358:d07d5f7cab35 47359:e1a6c0168741
     1 /*
     1 /*
     2  * reserved comment block
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT REMOVE OR ALTER!
     3  * @LastModified: Oct 2017
     4  */
     4  */
     5 /*
     5 /*
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     7  * contributor license agreements.  See the NOTICE file distributed with
     7  * contributor license agreements.  See the NOTICE file distributed with
     8  * this work for additional information regarding copyright ownership.
     8  * this work for additional information regarding copyright ownership.
    75     /**
    75     /**
    76      * Checks if all IDREFs have a corresponding ID.
    76      * Checks if all IDREFs have a corresponding ID.
    77      * @return null, if ID/IDREF checking is turned off
    77      * @return null, if ID/IDREF checking is turned off
    78      *         otherwise, returns the value of the super implementation
    78      *         otherwise, returns the value of the super implementation
    79      */
    79      */
    80     public Iterator checkIDRefID() {
    80     public Iterator<String> checkIDRefID() {
    81         return (fIdIdrefChecking) ? super.checkIDRefID() : null;
    81         return (fIdIdrefChecking) ? super.checkIDRefID() : null;
    82     }
    82     }
    83 
    83 
    84     /**
    84     /**
    85      * Checks if an ID has already been declared.
    85      * Checks if an ID has already been declared.