src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xs/LSInputList.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.
    20  */
    20  */
    21 
    21 
    22 package com.sun.org.apache.xerces.internal.xs;
    22 package com.sun.org.apache.xerces.internal.xs;
    23 
    23 
    24 import java.util.List;
    24 import java.util.List;
    25 
       
    26 import org.w3c.dom.ls.LSInput;
    25 import org.w3c.dom.ls.LSInput;
    27 
    26 
    28 /**
    27 /**
    29  *  The <code>LSInputList</code> interface provides the abstraction of an
    28  *  The <code>LSInputList</code> interface provides the abstraction of an
    30  * ordered collection of <code>LSInput</code>s, without defining or
    29  * ordered collection of <code>LSInput</code>s, without defining or
    31  * constraining how this collection is implemented.
    30  * constraining how this collection is implemented.
    32  */
    31  */
    33 public interface LSInputList extends List {
    32 public interface LSInputList extends List<LSInput> {
    34     /**
    33     /**
    35      *  The number of <code>LSInput</code>s in the list. The range of valid
    34      *  The number of <code>LSInput</code>s in the list. The range of valid
    36      * child object indices is 0 to <code>length-1</code> inclusive.
    35      * child object indices is 0 to <code>length-1</code> inclusive.
    37      */
    36      */
    38     public int getLength();
    37     public int getLength();