View Javadoc

1   /**
2    * Copyright 2005-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.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.krad.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  		super();
34  	}
35  
36  	public String getSource() {
37  		return this.source;
38  	}
39  
40  	public void setSource(String source) {
41  		this.source = source;
42  	}
43  
44  	public String getHeight() {
45  		return this.height;
46  	}
47  
48  	public void setHeight(String height) {
49  		this.height = height;
50  	}
51  
52  	public String getFrameborder() {
53  		return this.frameborder;
54  	}
55  
56  	public void setFrameborder(String frameborder) {
57  		this.frameborder = frameborder;
58  	}
59  
60  	public String getHspace() {
61  		return this.hspace;
62  	}
63  
64  	public void setHspace(String hspace) {
65  		this.hspace = hspace;
66  	}
67  
68  	public String getVspace() {
69  		return this.vspace;
70  	}
71  
72  	public void setVspace(String vspace) {
73  		this.vspace = vspace;
74  	}
75  
76  	/**
77  	 * @see org.kuali.rice.krad.uif.component.ComponentBase#getSupportsOnLoad()
78  	 */
79  	@Override
80  	public boolean getSupportsOnLoad() {
81  		return true;
82  	}
83  
84  }