src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/XSNamespaceItemList.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.
    26 /**
    26 /**
    27  *  The <code>XSNamesaceItemList</code> interface provides the abstraction of
    27  *  The <code>XSNamesaceItemList</code> interface provides the abstraction of
    28  * an immutable ordered collection of <code>XSNamespaceItem</code>s, without
    28  * an immutable ordered collection of <code>XSNamespaceItem</code>s, without
    29  * defining or constraining how this collection is implemented.
    29  * defining or constraining how this collection is implemented.
    30  */
    30  */
    31 public interface XSNamespaceItemList extends List {
    31 public interface XSNamespaceItemList extends List<XSNamespaceItem> {
    32     /**
    32     /**
    33      *  The number of <code>XSNamespaceItem</code>s in the list. The range of
    33      *  The number of <code>XSNamespaceItem</code>s in the list. The range of
    34      * valid child object indices is 0 to <code>length-1</code> inclusive.
    34      * valid child object indices is 0 to <code>length-1</code> inclusive.
    35      */
    35      */
    36     public int getLength();
    36     public int getLength();