Coverage Report - javax.faces.component.UISelectOne
 
Classes in this File Line Coverage Branch Coverage Complexity
UISelectOne
100%
9/9
75%
3/4
1.333
 
 1  
 /*
 2  
  * Copyright 2004-2011 the Seasar Foundation and the Others.
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 13  
  * either express or implied. See the License for the specific language
 14  
  * governing permissions and limitations under the License.
 15  
  */
 16  
 package javax.faces.component;
 17  
 
 18  
 import javax.faces.context.FacesContext;
 19  
 
 20  
 import org.seasar.framework.util.AssertionUtil;
 21  
 
 22  
 /**
 23  
  * @author shot
 24  
  * @author manhole
 25  
  */
 26  
 public class UISelectOne extends UIInput {
 27  
 
 28  
     public static final String COMPONENT_FAMILY = "javax.faces.SelectOne";
 29  
 
 30  
     public static final String COMPONENT_TYPE = "javax.faces.SelectOne";
 31  
 
 32  
     public static final String INVALID_MESSAGE_ID = "javax.faces.component.UISelectOne.INVALID";
 33  
 
 34  
     private static final String DEFAULT_RENDER_TYPE = "javax.faces.Menu";
 35  
 
 36  700
     public UISelectOne() {
 37  700
         setRendererType(DEFAULT_RENDER_TYPE);
 38  700
     }
 39  
 
 40  
     public String getFamily() {
 41  52
         return COMPONENT_FAMILY;
 42  
     }
 43  
 
 44  
     protected void validateValue(FacesContext context, Object value) {
 45  8
         AssertionUtil.assertNotNull("context", context);
 46  8
         super.validateValue(context, value);
 47  8
         if (!isValid() || value == null) {
 48  4
             return;
 49  
         }
 50  
         /*
 51  
          if (!ComponentUtil_.valueMatches(value, new SelectItemsIterator(this))) {
 52  
          Object[] args = { getId() };
 53  
          FacesMessageUtil.addErrorMessage(context, this,
 54  
          INVALID_MESSAGE_ID, args);
 55  
          setValid(false);
 56  
          }
 57  
          */
 58  4
     }
 59  
 }