org.apache.myfaces.custom.document.DocumentBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tomahawk Show documentation
Show all versions of tomahawk Show documentation
JSF components and utilities that can be used with any JSF implementation.
This library is compatible with both JSF1.1 and JSF1.2; however for JSF1.2 users there
is an alternative build of Tomahawk available that takes advantage of JSF1.2 features to
offer some additional benefits.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.custom.document;
import javax.faces.component.UIComponent;
import javax.faces.el.ValueBinding;
import javax.faces.context.FacesContext;
// Generated from class org.apache.myfaces.custom.document.AbstractDocumentBody.
//
// WARNING: This file was automatically generated. Do not edit it directly,
// or you will lose your changes.
public class DocumentBody extends org.apache.myfaces.custom.document.AbstractDocumentBody
{
static public final String COMPONENT_FAMILY =
"javax.faces.Data";
static public final String COMPONENT_TYPE =
"org.apache.myfaces.DocumentBody";
static public final String DEFAULT_RENDERER_TYPE =
"org.apache.myfaces.DocumentBody";
public DocumentBody()
{
setRendererType("org.apache.myfaces.DocumentBody");
}
public String getFamily()
{
return COMPONENT_FAMILY;
}
// Property: onload
private String _onload;
public String getOnload()
{
if (_onload != null)
{
return _onload;
}
ValueBinding vb = getValueBinding("onload");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setOnload(String onload)
{
this._onload = onload;
}
// Property: onunload
private String _onunload;
public String getOnunload()
{
if (_onunload != null)
{
return _onunload;
}
ValueBinding vb = getValueBinding("onunload");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setOnunload(String onunload)
{
this._onunload = onunload;
}
// Property: onresize
private String _onresize;
public String getOnresize()
{
if (_onresize != null)
{
return _onresize;
}
ValueBinding vb = getValueBinding("onresize");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setOnresize(String onresize)
{
this._onresize = onresize;
}
// Property: onkeypress
private String _onkeypress;
public String getOnkeypress()
{
if (_onkeypress != null)
{
return _onkeypress;
}
ValueBinding vb = getValueBinding("onkeypress");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setOnkeypress(String onkeypress)
{
this._onkeypress = onkeypress;
}
// Property: style
private String _style;
public String getStyle()
{
if (_style != null)
{
return _style;
}
ValueBinding vb = getValueBinding("style");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setStyle(String style)
{
this._style = style;
}
// Property: styleClass
private String _styleClass;
public String getStyleClass()
{
if (_styleClass != null)
{
return _styleClass;
}
ValueBinding vb = getValueBinding("styleClass");
if (vb != null)
{
Object value = vb.getValue(getFacesContext());
if (value == null)
{
return null;
}
else
{
return (String) value.toString();
}
}
return null;
}
public void setStyleClass(String styleClass)
{
this._styleClass = styleClass;
}
public Object saveState(FacesContext facesContext)
{
Object[] values = new Object[7];
values[0] = super.saveState(facesContext);
values[1] = _onload;
values[2] = _onunload;
values[3] = _onresize;
values[4] = _onkeypress;
values[5] = _style;
values[6] = _styleClass;
return values;
}
public void restoreState(FacesContext facesContext, Object state)
{
Object[] values = (Object[])state;
super.restoreState(facesContext,values[0]);
_onload = (java.lang.String) values[1];
_onunload = (java.lang.String) values[2];
_onresize = (java.lang.String) values[3];
_onkeypress = (java.lang.String) values[4];
_style = (java.lang.String) values[5];
_styleClass = (java.lang.String) values[6];
}
}