Coverage Report - org.seasar.teeda.core.managedbean.ManagedBeanDesc
 
Classes in this File Line Coverage Branch Coverage Complexity
ManagedBeanDesc
N/A
N/A
1
ManagedBeanDescImpl
0%
0/4
N/A
1
ManagedPropertyDesc
N/A
N/A
1
 
 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 org.seasar.teeda.core.managedbean;
 17  
 
 18  
 import org.seasar.framework.beans.BeanDesc;
 19  
 
 20  
 /**
 21  
  * @author shot
 22  
  * 
 23  
  * Like BeanDesc of S2, Teeda should have own describe for ManagedBean.
 24  
  */
 25  
 public interface ManagedBeanDesc {
 26  
 
 27  
     public Class getManagedBeanClass();
 28  
 
 29  
 }
 30  
 
 31  
 class ManagedBeanDescImpl implements ManagedBeanDesc {
 32  
 
 33  
     private BeanDesc beanDesc_;
 34  
 
 35  0
     public ManagedBeanDescImpl(BeanDesc beanDesc) {
 36  0
         beanDesc_ = beanDesc;
 37  0
     }
 38  
 
 39  
     public Class getManagedBeanClass() {
 40  0
         return beanDesc_.getBeanClass();
 41  
     }
 42  
 
 43  
 }
 44  
 
 45  
 interface ManagedPropertyDesc {
 46  
     public String getPropertyName();
 47  
 
 48  
     public Class getPropertyType();
 49  
 
 50  
     public boolean isListExtensionClass();
 51  
 
 52  
     public boolean isMapExtensionClass();
 53  
 
 54  
     public boolean hasValueBindingExpression();
 55  
 }