Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
IframeField |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.php | |
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, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.rice.kns.uif.field; | |
17 | ||
18 | /** | |
19 | * Field that encloses an iframe element | |
20 | * | |
21 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
22 | */ | |
23 | public class IframeField extends FieldBase { | |
24 | private static final long serialVersionUID = 5797473302619055088L; | |
25 | ||
26 | private String source; | |
27 | private String height; | |
28 | private String frameborder; | |
29 | private String hspace; | |
30 | private String vspace; | |
31 | ||
32 | public IframeField() { | |
33 | 0 | super(); |
34 | 0 | } |
35 | ||
36 | public String getSource() { | |
37 | 0 | return this.source; |
38 | } | |
39 | ||
40 | public void setSource(String source) { | |
41 | 0 | this.source = source; |
42 | 0 | } |
43 | ||
44 | public String getHeight() { | |
45 | 0 | return this.height; |
46 | } | |
47 | ||
48 | public void setHeight(String height) { | |
49 | 0 | this.height = height; |
50 | 0 | } |
51 | ||
52 | public String getFrameborder() { | |
53 | 0 | return this.frameborder; |
54 | } | |
55 | ||
56 | public void setFrameborder(String frameborder) { | |
57 | 0 | this.frameborder = frameborder; |
58 | 0 | } |
59 | ||
60 | public String getHspace() { | |
61 | 0 | return this.hspace; |
62 | } | |
63 | ||
64 | public void setHspace(String hspace) { | |
65 | 0 | this.hspace = hspace; |
66 | 0 | } |
67 | ||
68 | public String getVspace() { | |
69 | 0 | return this.vspace; |
70 | } | |
71 | ||
72 | public void setVspace(String vspace) { | |
73 | 0 | this.vspace = vspace; |
74 | 0 | } |
75 | ||
76 | /** | |
77 | * @see org.kuali.rice.kns.uif.core.ComponentBase#getSupportsOnLoad() | |
78 | */ | |
79 | @Override | |
80 | public boolean getSupportsOnLoad() { | |
81 | 0 | return true; |
82 | } | |
83 | ||
84 | } |