< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DOMStringListImpl.java

Print this page


   1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  * @LastModified: Oct 2017
   4  */
   5 /*
   6  * Licensed to the Apache Software Foundation (ASF) under one or more
   7  * contributor license agreements.  See the NOTICE file distributed with
   8  * this work for additional information regarding copyright ownership.
   9  * The ASF licenses this file to You under the Apache License, Version 2.0
  10  * (the "License"); you may not use this file except in compliance with
  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 package com.sun.org.apache.xerces.internal.dom;
  23 


  42     /**
  43      * Construct an empty list of DOMStringListImpl
  44      */
  45     public DOMStringListImpl() {
  46         fStrings = new ArrayList<>();
  47     }
  48 
  49     /**
  50      * Construct a DOMStringListImpl from an ArrayList
  51      */
  52     public DOMStringListImpl(List<String> params) {
  53         fStrings = params;
  54     }
  55 
  56     /**
  57      * @see org.w3c.dom.DOMStringList#item(int)
  58      */
  59     public String item(int index) {
  60         final int length = getLength();
  61         if (index >= 0 && index < length) {
  62             return (String) fStrings.get(index);
  63         }
  64         return null;
  65     }
  66 
  67     /**
  68      * @see org.w3c.dom.DOMStringList#getLength()
  69      */
  70     public int getLength() {
  71             return fStrings.size();
  72     }
  73 
  74     /**
  75      * @see org.w3c.dom.DOMStringList#contains(String)
  76      */
  77     public boolean contains(String param) {
  78         return fStrings.contains(param);
  79     }
  80 
  81     /**
  82      * DOM Internal:
   1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  * @LastModified: Nov 2017
   4  */
   5 /*
   6  * Licensed to the Apache Software Foundation (ASF) under one or more
   7  * contributor license agreements.  See the NOTICE file distributed with
   8  * this work for additional information regarding copyright ownership.
   9  * The ASF licenses this file to You under the Apache License, Version 2.0
  10  * (the "License"); you may not use this file except in compliance with
  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 package com.sun.org.apache.xerces.internal.dom;
  23 


  42     /**
  43      * Construct an empty list of DOMStringListImpl
  44      */
  45     public DOMStringListImpl() {
  46         fStrings = new ArrayList<>();
  47     }
  48 
  49     /**
  50      * Construct a DOMStringListImpl from an ArrayList
  51      */
  52     public DOMStringListImpl(List<String> params) {
  53         fStrings = params;
  54     }
  55 
  56     /**
  57      * @see org.w3c.dom.DOMStringList#item(int)
  58      */
  59     public String item(int index) {
  60         final int length = getLength();
  61         if (index >= 0 && index < length) {
  62             return fStrings.get(index);
  63         }
  64         return null;
  65     }
  66 
  67     /**
  68      * @see org.w3c.dom.DOMStringList#getLength()
  69      */
  70     public int getLength() {
  71             return fStrings.size();
  72     }
  73 
  74     /**
  75      * @see org.w3c.dom.DOMStringList#contains(String)
  76      */
  77     public boolean contains(String param) {
  78         return fStrings.contains(param);
  79     }
  80 
  81     /**
  82      * DOM Internal:
< prev index next >