Coverage Report - org.apache.myfaces.shared.renderkit.html.util.SelectItemInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
SelectItemInfo
0%
0/13
N/A
1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 
 20  
 package org.apache.myfaces.shared.renderkit.html.util;
 21  
 
 22  
 import javax.faces.component.UIComponent;
 23  
 import javax.faces.model.SelectItem;
 24  
 
 25  
 /**
 26  
  * 
 27  
  * NOTE: This class should not be made Serializable. It holds request time information associated with the iteration
 28  
  * done by SelectItemsIterator, like the associated component or the calculated model value before conversion.
 29  
  */
 30  
 public class SelectItemInfo
 31  
 {
 32  
     private final SelectItem item;
 33  
     
 34  
     private final UIComponent component;
 35  
     
 36  
     private final Object value;
 37  
 
 38  
     public SelectItemInfo(SelectItem item, UIComponent component, Object value)
 39  0
     {
 40  0
         this.item = item;
 41  0
         this.component = component;
 42  0
         this.value = value;
 43  0
     }
 44  
     
 45  
     public SelectItemInfo(SelectItem item, UIComponent component)
 46  0
     {
 47  0
         this.item = item;
 48  0
         this.component = component;
 49  0
         this.value = null;
 50  0
     }
 51  
 
 52  
     /**
 53  
      * @return the item
 54  
      */
 55  
     public SelectItem getItem()
 56  
     {
 57  0
         return item;
 58  
     }
 59  
 
 60  
     /**
 61  
      * @return the component
 62  
      */
 63  
     public UIComponent getComponent()
 64  
     {
 65  0
         return component;
 66  
     }
 67  
 
 68  
     /**
 69  
      * Return the underlying associated model value.
 70  
      */
 71  
     public Object getValue()
 72  
     {
 73  0
         return value;
 74  
     }
 75  
     
 76  
 }