| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.seasar.teeda.core.config.faces.element.impl; |
| 17 | |
|
| 18 | |
import org.seasar.teeda.core.config.faces.element.ReferencedBeanElement; |
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
public class ReferencedBeanElementImpl implements ReferencedBeanElement { |
| 24 | |
|
| 25 | |
private String referencedBeanName_; |
| 26 | |
|
| 27 | |
private String referencedClassName_; |
| 28 | |
|
| 29 | 2 | public ReferencedBeanElementImpl() { |
| 30 | 2 | } |
| 31 | |
|
| 32 | |
public void setReferencedBeanName(String referencedBeanName) { |
| 33 | 2 | referencedBeanName_ = referencedBeanName; |
| 34 | 2 | } |
| 35 | |
|
| 36 | |
public void setReferencedBeanClass(String referencedBeanClass) { |
| 37 | 2 | referencedClassName_ = referencedBeanClass; |
| 38 | 2 | } |
| 39 | |
|
| 40 | |
public String getReferencedBeanName() { |
| 41 | 0 | return referencedBeanName_; |
| 42 | |
} |
| 43 | |
|
| 44 | |
public String getReferencedBeanClass() { |
| 45 | 0 | return referencedClassName_; |
| 46 | |
} |
| 47 | |
|
| 48 | |
} |