Coverage Report - org.apache.commons.collections.primitives.decorators.BaseProxyByteList
 
Classes in this File Line Coverage Branch Coverage Complexity
BaseProxyByteList
100%
14/14
N/A
1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *     http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.commons.collections.primitives.decorators;
 18  
 
 19  
 import org.apache.commons.collections.primitives.ByteCollection;
 20  
 import org.apache.commons.collections.primitives.ByteList;
 21  
 import org.apache.commons.collections.primitives.ByteListIterator;
 22  
 
 23  
 /**
 24  
  * 
 25  
  * @since Commons Primitives 1.0
 26  
  * @version $Revision: 480463 $ $Date: 2006-11-29 03:15:23 -0500 (Wed, 29 Nov 2006) $
 27  
  * 
 28  
  * @author Rodney Waldhoff 
 29  
  */
 30  
 abstract class BaseProxyByteList extends BaseProxyByteCollection implements ByteList {
 31  
     protected abstract ByteList getProxiedList();
 32  
 
 33  
     protected final ByteCollection getProxiedCollection() {
 34  7
         return getProxiedList();
 35  
     }
 36  
 
 37  16
     protected BaseProxyByteList() {
 38  16
     }
 39  
 
 40  
     public void add(int index, byte element) {
 41  1
         getProxiedList().add(index,element);
 42  1
     }
 43  
 
 44  
     public boolean addAll(int index, ByteCollection collection) {        
 45  1
         return getProxiedList().addAll(index,collection);
 46  
     }
 47  
 
 48  
     public byte get(int index) {
 49  2
         return getProxiedList().get(index);
 50  
     }
 51  
 
 52  
     public int indexOf(byte element) {
 53  1
         return getProxiedList().indexOf(element);
 54  
     }
 55  
 
 56  
     public int lastIndexOf(byte element) {
 57  1
         return getProxiedList().lastIndexOf(element);
 58  
     }
 59  
 
 60  
     public ByteListIterator listIterator() {
 61  1
         return getProxiedList().listIterator();
 62  
     }
 63  
 
 64  
     public ByteListIterator listIterator(int index) {
 65  1
         return getProxiedList().listIterator(index);
 66  
     }
 67  
 
 68  
     public byte removeElementAt(int index) {
 69  1
         return getProxiedList().removeElementAt(index);
 70  
     }
 71  
 
 72  
     public byte set(int index, byte element) {
 73  1
         return getProxiedList().set(index,element);
 74  
     }
 75  
 
 76  
     public ByteList subList(int fromIndex, int toIndex) {
 77  1
         return getProxiedList().subList(fromIndex,toIndex);
 78  
     }
 79  
 
 80  
 }