All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.icesoft.faces.component.ext.HeaderRow Maven / Gradle / Ivy

/*
 * Copyright 2004-2013 ICEsoft Technologies Canada Corp.
 *
 * Licensed 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 com.icesoft.faces.component.ext;

import javax.faces.component.UIPanel;
import javax.faces.context.FacesContext;
import javax.faces.el.ValueBinding;

import com.icesoft.faces.component.CSS_DEFAULT;
import com.icesoft.faces.component.ext.taglib.Util;

public class HeaderRow extends UIPanel {
    public static final String COMPONENT_TYPE = "com.icesoft.faces.HeaderRow";
    public static final String COMPONENT_FAMILY = "com.icesoft.faces.Header";
    private String style = null;
    private String styleClass = null;
    private String colspan = null;
    private String rowspan = null;
    private String renderedOnUserRole = null;

    public String getFamily() {
        return COMPONENT_FAMILY;
    }
    public String getComponentType() {
        return COMPONENT_TYPE;
    }
    
    /**
     * 

Set the value of the style property.

*/ public void setStyle(String style) { this.style = style; } /** *

Return the value of the style property.

*/ public String getStyle() { if (style != null) { return style; } ValueBinding vb = getValueBinding("style"); return vb != null ? (String) vb.getValue(getFacesContext()) : null; } /** *

Set the value of the styleClass property.

*/ public void setStyleClass(String styleClass) { this.styleClass = styleClass; } /** *

Return the value of the styleClass property.

*/ public String getStyleClass() { if (styleClass != null) { return styleClass; } ValueBinding vb = getValueBinding("styleClass"); return vb != null ? (String) vb.getValue(getFacesContext()) : null; } /** *

Set the value of the colspan property.

*/ public void setColspan(String colspan) { this.colspan = colspan; } /** *

Return the value of the colspan property.

*/ public String getColspan() { if (colspan != null) { return colspan; } ValueBinding vb = getValueBinding("colspan"); return vb != null ? (String) vb.getValue(getFacesContext()) :null; } /** *

Set the value of the rowspan property.

*/ public void setRowspan(String rowspan) { this.rowspan = rowspan; } /** *

Return the value of the rowspan property.

*/ public String getRowspan() { if (rowspan != null) { return rowspan; } ValueBinding vb = getValueBinding("rowspan"); return vb != null ? (String) vb.getValue(getFacesContext()) :null; } /** *

Set the value of the renderedOnUserRole property.

*/ public void setRenderedOnUserRole(String renderedOnUserRole) { this.renderedOnUserRole = renderedOnUserRole; } /** *

Return the value of the renderedOnUserRole property.

*/ public String getRenderedOnUserRole() { if (renderedOnUserRole != null) { return renderedOnUserRole; } ValueBinding vb = getValueBinding("renderedOnUserRole"); return vb != null ? (String) vb.getValue(getFacesContext()) : null; } /** *

Return the value of the rendered property.

*/ public boolean isRendered() { if (!Util.isRenderedOnUserRole(this)) { return false; } return super.isRendered(); } public void restoreState(FacesContext context, Object state) { Object[] values = (Object[])state; super.restoreState(context, values[0]); renderedOnUserRole = (String)values[1]; style = (String)values[2]; styleClass = (String)values[3]; colspan = (String) values[4]; rowspan = (String) values[5]; } public Object saveState(FacesContext context) { Object[] values = new Object[6]; values[0] = super.saveState(context); values[1] = renderedOnUserRole; values[2] = style; values[3] = styleClass; values[4] = colspan; values[5] = rowspan; return values; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy