Example usage for javax.el ValueExpression getValue

List of usage examples for javax.el ValueExpression getValue

Introduction

In this page you can find the example usage for javax.el ValueExpression getValue.

Prototype

public abstract Object getValue(ELContext context);

Source Link

Usage

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnsubmit() {
    if (onsubmit != null) {
        return onsubmit;
    }//from www  .ja  v a 2s  . co m
    ValueExpression vb = getValueExpression("onsubmit");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnkeydown() {
    if (onkeydown != null) {
        return onkeydown;
    }/*from w w w.j a  v  a2 s  .c  om*/
    ValueExpression vb = getValueExpression("onkeydown");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnmouseup() {
    if (onmouseup != null) {
        return onmouseup;
    }/*  w  w w.  ja v a 2s. c o m*/
    ValueExpression vb = getValueExpression("onmouseup");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getStyleClass() {
    if (styleClass != null) {
        return styleClass;
    }/*from  w  ww.  j  a va2  s.  c  o  m*/
    ValueExpression vb = getValueExpression("styleClass");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOndblclick() {
    if (ondblclick != null) {
        return ondblclick;
    }//from w w  w  .  j  a va2s. c o m
    ValueExpression vb = getValueExpression("ondblclick");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnkeypress() {
    if (onkeypress != null) {
        return onkeypress;
    }//from  w w w .  j  ava2  s. co m
    ValueExpression vb = getValueExpression("onkeypress");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnmouseout() {
    if (onmouseout != null) {
        return onmouseout;
    }//from  w ww  .j a  v a  2 s . c om
    ValueExpression vb = getValueExpression("onmouseout");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnmousedown() {
    if (onmousedown != null) {
        return onmousedown;
    }//w  w  w.  j  a  v  a  2s  .c o m
    ValueExpression vb = getValueExpression("onmousedown");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnmousemove() {
    if (onmousemove != null) {
        return onmousemove;
    }/*from  w w  w.  ja va2 s  .  c o  m*/
    ValueExpression vb = getValueExpression("onmousemove");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}

From source file:org.jbuilt.components.html.raw.base.AbstractCommandComponent.java

public String getOnmouseover() {
    if (onmouseover != null) {
        return onmouseover;
    }/* ww w  .j  av a2 s  .  c  om*/
    ValueExpression vb = getValueExpression("onmouseover");
    if (vb != null) {
        return (String) vb.getValue(getFacesContext().getELContext());
    }
    return null;
}