javax.faces.component.html.HtmlGraphicImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of myfaces-api Show documentation
Show all versions of myfaces-api Show documentation
The public API classes of the Apache MyFaces CORE JSF-2.2 project
/*
* 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 javax.faces.component.html;
import javax.el.ValueExpression;
import javax.faces.context.FacesContext;
import javax.faces.component.UIComponent;
// Generated from class javax.faces.component.html._HtmlGraphicImage.
//
// WARNING: This file was automatically generated. Do not edit it directly,
// or you will lose your changes.
public class HtmlGraphicImage extends javax.faces.component.UIGraphic
{
static public final String COMPONENT_FAMILY =
"javax.faces.Graphic";
static public final String COMPONENT_TYPE =
"javax.faces.HtmlGraphicImage";
public HtmlGraphicImage()
{
setRendererType("javax.faces.Image");
}
@Override
public String getFamily()
{
return COMPONENT_FAMILY;
}
// Property: height
private String _height;
public String getHeight()
{
if (_height != null)
{
return _height;
}
ValueExpression vb = getValueExpression("height");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setHeight(String height)
{
this._height = height;
}
// Property: ismap
private boolean _ismap;
private boolean _ismapSet;
public boolean isIsmap()
{
if (_ismapSet)
{
return _ismap;
}
ValueExpression vb = getValueExpression("ismap");
if (vb != null)
{
return ((Boolean) vb.getValue(getFacesContext().getELContext())).booleanValue();
}
return false;
}
public void setIsmap(boolean ismap)
{
this._ismap = ismap;
this._ismapSet = true;
}
// Property: longdesc
private String _longdesc;
public String getLongdesc()
{
if (_longdesc != null)
{
return _longdesc;
}
ValueExpression vb = getValueExpression("longdesc");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setLongdesc(String longdesc)
{
this._longdesc = longdesc;
}
// Property: usemap
private String _usemap;
public String getUsemap()
{
if (_usemap != null)
{
return _usemap;
}
ValueExpression vb = getValueExpression("usemap");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setUsemap(String usemap)
{
this._usemap = usemap;
}
// Property: width
private String _width;
public String getWidth()
{
if (_width != null)
{
return _width;
}
ValueExpression vb = getValueExpression("width");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setWidth(String width)
{
this._width = width;
}
// Property: style
private String _style;
public String getStyle()
{
if (_style != null)
{
return _style;
}
ValueExpression vb = getValueExpression("style");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setStyle(String style)
{
this._style = style;
}
// Property: styleClass
private String _styleClass;
public String getStyleClass()
{
if (_styleClass != null)
{
return _styleClass;
}
ValueExpression vb = getValueExpression("styleClass");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setStyleClass(String styleClass)
{
this._styleClass = styleClass;
}
// Property: alt
private String _alt;
public String getAlt()
{
if (_alt != null)
{
return _alt;
}
ValueExpression vb = getValueExpression("alt");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setAlt(String alt)
{
this._alt = alt;
}
// Property: onclick
private String _onclick;
public String getOnclick()
{
if (_onclick != null)
{
return _onclick;
}
ValueExpression vb = getValueExpression("onclick");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnclick(String onclick)
{
this._onclick = onclick;
}
// Property: ondblclick
private String _ondblclick;
public String getOndblclick()
{
if (_ondblclick != null)
{
return _ondblclick;
}
ValueExpression vb = getValueExpression("ondblclick");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOndblclick(String ondblclick)
{
this._ondblclick = ondblclick;
}
// Property: onkeydown
private String _onkeydown;
public String getOnkeydown()
{
if (_onkeydown != null)
{
return _onkeydown;
}
ValueExpression vb = getValueExpression("onkeydown");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnkeydown(String onkeydown)
{
this._onkeydown = onkeydown;
}
// Property: onkeypress
private String _onkeypress;
public String getOnkeypress()
{
if (_onkeypress != null)
{
return _onkeypress;
}
ValueExpression vb = getValueExpression("onkeypress");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnkeypress(String onkeypress)
{
this._onkeypress = onkeypress;
}
// Property: onkeyup
private String _onkeyup;
public String getOnkeyup()
{
if (_onkeyup != null)
{
return _onkeyup;
}
ValueExpression vb = getValueExpression("onkeyup");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnkeyup(String onkeyup)
{
this._onkeyup = onkeyup;
}
// Property: onmousedown
private String _onmousedown;
public String getOnmousedown()
{
if (_onmousedown != null)
{
return _onmousedown;
}
ValueExpression vb = getValueExpression("onmousedown");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnmousedown(String onmousedown)
{
this._onmousedown = onmousedown;
}
// Property: onmousemove
private String _onmousemove;
public String getOnmousemove()
{
if (_onmousemove != null)
{
return _onmousemove;
}
ValueExpression vb = getValueExpression("onmousemove");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnmousemove(String onmousemove)
{
this._onmousemove = onmousemove;
}
// Property: onmouseout
private String _onmouseout;
public String getOnmouseout()
{
if (_onmouseout != null)
{
return _onmouseout;
}
ValueExpression vb = getValueExpression("onmouseout");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnmouseout(String onmouseout)
{
this._onmouseout = onmouseout;
}
// Property: onmouseover
private String _onmouseover;
public String getOnmouseover()
{
if (_onmouseover != null)
{
return _onmouseover;
}
ValueExpression vb = getValueExpression("onmouseover");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnmouseover(String onmouseover)
{
this._onmouseover = onmouseover;
}
// Property: onmouseup
private String _onmouseup;
public String getOnmouseup()
{
if (_onmouseup != null)
{
return _onmouseup;
}
ValueExpression vb = getValueExpression("onmouseup");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setOnmouseup(String onmouseup)
{
this._onmouseup = onmouseup;
}
// Property: dir
private String _dir;
public String getDir()
{
if (_dir != null)
{
return _dir;
}
ValueExpression vb = getValueExpression("dir");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setDir(String dir)
{
this._dir = dir;
}
// Property: lang
private String _lang;
public String getLang()
{
if (_lang != null)
{
return _lang;
}
ValueExpression vb = getValueExpression("lang");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setLang(String lang)
{
this._lang = lang;
}
// Property: title
private String _title;
public String getTitle()
{
if (_title != null)
{
return _title;
}
ValueExpression vb = getValueExpression("title");
if (vb != null)
{
return (String) vb.getValue(getFacesContext().getELContext());
}
return null;
}
public void setTitle(String title)
{
this._title = title;
}
@Override
public Object saveState(FacesContext facesContext)
{
Object[] values = new Object[23];
values[0] = super.saveState(facesContext);
values[1] = _height;
values[2] = Boolean.valueOf(_ismap);
values[3] = Boolean.valueOf(_ismapSet);
values[4] = _longdesc;
values[5] = _usemap;
values[6] = _width;
values[7] = _style;
values[8] = _styleClass;
values[9] = _alt;
values[10] = _onclick;
values[11] = _ondblclick;
values[12] = _onkeydown;
values[13] = _onkeypress;
values[14] = _onkeyup;
values[15] = _onmousedown;
values[16] = _onmousemove;
values[17] = _onmouseout;
values[18] = _onmouseover;
values[19] = _onmouseup;
values[20] = _dir;
values[21] = _lang;
values[22] = _title;
return values;
}
@Override
public void restoreState(FacesContext facesContext, Object state)
{
Object[] values = (Object[])state;
super.restoreState(facesContext,values[0]);
_height = (java.lang.String) values[1];
_ismap = ((Boolean) values[2]).booleanValue();
_ismapSet = ((Boolean) values[3]).booleanValue();
_longdesc = (java.lang.String) values[4];
_usemap = (java.lang.String) values[5];
_width = (java.lang.String) values[6];
_style = (java.lang.String) values[7];
_styleClass = (java.lang.String) values[8];
_alt = (java.lang.String) values[9];
_onclick = (java.lang.String) values[10];
_ondblclick = (java.lang.String) values[11];
_onkeydown = (java.lang.String) values[12];
_onkeypress = (java.lang.String) values[13];
_onkeyup = (java.lang.String) values[14];
_onmousedown = (java.lang.String) values[15];
_onmousemove = (java.lang.String) values[16];
_onmouseout = (java.lang.String) values[17];
_onmouseover = (java.lang.String) values[18];
_onmouseup = (java.lang.String) values[19];
_dir = (java.lang.String) values[20];
_lang = (java.lang.String) values[21];
_title = (java.lang.String) values[22];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy