chartitemtag.java

来自「一个java写的加密算法」· Java 代码 · 共 152 行

JAVA
152
字号
/* * Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. * Use is subject to license terms. */package components.taglib;import components.components.ChartItemComponent;import javax.faces.component.UIComponent;import javax.faces.context.FacesContext;import javax.faces.el.ValueBinding;import javax.faces.webapp.UIComponentTag;/** * <p><strong>ChartItemTag</strong> is the tag handler that processes the  * <code>chartItem</code> custom tag.</p> */public class ChartItemTag extends UIComponentTag {    public ChartItemTag() {        super();    }    //    // Class methods    //    //     // Accessors    //    /**     * <p>The label for this item</p>     */    private String itemLabel = null;    /**     *<p>Set the label for this item.     */    public void setItemLabel(String label) {        this.itemLabel = label;    }    /**     * <p>The color for this item.</p>     */    private String itemColor = null;    /**     *<p>Set the color for this item.     */    public void setItemColor(String color) {        this.itemColor = color;    }        /**     * <p>The value for this item.</p>     */    private String itemValue = null;    /**     *<p>Set the ualue for this item.     */    public void setItemValue(String itemVal) {        this.itemValue = itemVal;    }    private String value = null;    public void setValue(String value) {        this.value = value;    }    //    // General Methods    //    /**     * <p>Return the type of the component.     */    public String getComponentType() {        return "ChartItem";    }    /**     * <p>Return the renderer type (if any)     */    public String getRendererType() {        return null;    }    /**     * <p>Release any resources used by this tag handler     */    public void release() {        super.release();        itemLabel = null;        itemValue = null;        itemColor = null;    }    //    // Methods from BaseComponentTag    //    /**     * <p>Set the component properties     */    protected void setProperties(UIComponent component) {        super.setProperties(component);        ChartItemComponent chartItem = (ChartItemComponent) component;        if (null != value) {            if (isValueReference(value)) {                ValueBinding vb = FacesContext.getCurrentInstance()                    .getApplication().createValueBinding(value);                chartItem.setValueBinding("value", vb);            } else {                chartItem.setValue(value);            }        }        if (null != itemLabel) {            if (isValueReference(itemLabel)) {                ValueBinding vb = FacesContext.getCurrentInstance()                    .getApplication().createValueBinding(itemLabel);                chartItem.setValueBinding("itemLabel", vb);            } else {                chartItem.setItemLabel(itemLabel);            }        }                if (null != itemColor) {            if (isValueReference(itemColor)) {                ValueBinding vb = FacesContext.getCurrentInstance()                    .getApplication().createValueBinding(itemColor);                chartItem.setValueBinding("itemColor", vb);            } else {                chartItem.setItemColor(itemColor);            }        }                if (null != itemValue) {            if (isValueReference(itemValue)) {                ValueBinding vb = FacesContext.getCurrentInstance()                    .getApplication().createValueBinding(itemValue);                chartItem.setValueBinding("itemValue", vb);            } else {                chartItem.setItemValue(itemValue);            }        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?