亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? headercell.java

?? dispalytag的源碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
     * @param sortName name given to server for sorting this column     */    public void setSortName(String sortName)    {        this.sortName = sortName;    }    /**     * Gets the column title.     * @return the column title. If no title is specified the capitalized bean property name is returned     */    public String getTitle()    {        if (this.title != null)        {            return this.title;        }        else if (this.beanPropertyName != null)        {            return StringUtils.capitalize(this.beanPropertyName);        }        return TagConstants.EMPTY_STRING;    }    /**     * Setter for the column title.     * @param value - the column title     */    public void setTitle(String value)    {        this.title = value;    }    /**     * Returns the HtmlAttributeMap containg all the html attributes for the <strong>td </strong> tags.     * @return HtmlAttributeMap with td attributes     */    public HtmlAttributeMap getHtmlAttributes()    {        return this.htmlAttributes;    }    /**     * Sets the HtmlAttributeMap containg all the html attributes for the <strong>td </strong> tags.     * @param attributes HtmlAttributeMap     */    public void setHtmlAttributes(HtmlAttributeMap attributes)    {        this.htmlAttributes = attributes;    }    /**     * returns the HtmlAttributeMap containg all the html attributes for the <strong>th </strong> tag.     * @return HtmlAttributeMap with th attributes     */    public HtmlAttributeMap getHeaderAttributes()    {        return this.headerAttributes;    }    /**     * Sets the HtmlAttributeMap containg all the html attributes for the <strong>th </strong> tag.     * @param attributes HtmlAttributeMap     */    public void setHeaderAttributes(HtmlAttributeMap attributes)    {        this.headerAttributes = attributes;    }    /**     * Adds a css class to the html "class" attribute.     * @param cssClass String     */    public void addHeaderClass(String cssClass)    {        // null safe        if (StringUtils.isBlank(cssClass))        {            return;        }        // if headerAttributes has not been set, instantiates a new map        if (headerAttributes == null)        {            headerAttributes = new HtmlAttributeMap();        }        Object classAttributes = this.headerAttributes.get(TagConstants.ATTRIBUTE_CLASS);        // handle multiple values        if (classAttributes == null)        {            this.headerAttributes.put(TagConstants.ATTRIBUTE_CLASS, new MultipleHtmlAttribute(cssClass));        }        else        {            ((MultipleHtmlAttribute) classAttributes).addAttributeValue(cssClass);        }    }    /**     * return the open tag for a column header (th).     * @return String &lt;th&gt; tag with attributes     */    public String getHeaderOpenTag()    {        return HtmlTagUtil.createOpenTagString(TagConstants.TAGNAME_COLUMN_HEADER, this.headerAttributes);    }    /**     * return the closing tag for a cell (td).     * @return String &lt;/td&gt;     */    public String getCloseTag()    {        return TagConstants.TAG_OPENCLOSING + TagConstants.TAGNAME_COLUMN + TagConstants.TAG_CLOSE;    }    /**     * return the closing tag for a column header (th).     * @return String &lt;/th&gt;     */    public String getHeaderCloseTag()    {        return TagConstants.TAG_OPENCLOSING + TagConstants.TAGNAME_COLUMN_HEADER + TagConstants.TAG_CLOSE;    }    /**     * Setter for the href to be used for dinamic links in cells.     * @param baseHref base href for links     */    public void setHref(Href baseHref)    {        this.href = baseHref;    }    /**     * Getter for the href to be used for dinamic links in cells.     * @return Href base href for links     */    public Href getHref()    {        return this.href;    }    /**     * Setter for the name of the param to add to links.     * @param name name of the param     */    public void setParamName(String name)    {        this.paramName = name;    }    /**     * Getter for the name of the param to add to links.     * @return String name of the param     */    public String getParamName()    {        return this.paramName;    }    /**     * Setter for the name of the property to look up in bean to get the param value for links.     * @param property name of the property to look up in bean to get the param value for links     */    public void setParamProperty(String property)    {        this.paramProperty = property;    }    /**     * Getter for the name of the property to look up in bean to get the param value for links.     * @return String name of the property to look up in bean to get the param value for links     */    public String getParamProperty()    {        return this.paramProperty;    }    /**     * Getter for the name of the property in the bean which will be used for sorting.     * @return String name of the property in the bean which will be used for sorting     */    public String getSortProperty()    {        return this.sortPropertyName;    }    /**     * Setter for the name of the property in the bean which will be used for sorting.     * @param propertyName - name of the property in the bean which will be used for sorting     */    public void setSortProperty(String propertyName)    {        this.sortPropertyName = propertyName;    }    /**     * Sets the default sort order for this column     * @return default order     */    public SortOrderEnum getDefaultSortOrder()    {        return this.defaultSortOrder;    }    /**     * Gets the default sort order for this column     * @param order default order     */    public void setDefaultSortOrder(SortOrderEnum order)    {        this.defaultSortOrder = order;    }    /**     * @see java.lang.Object#toString()     */    public String toString()    {        return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) //            .append("columnNumber", this.columnNumber) //$NON-NLS-1$            .append("title", this.title) //$NON-NLS-1$            .append("beanPropertyName", this.beanPropertyName) //$NON-NLS-1$            .toString();    }    /**     * Set the column comparator.     * @param columnComparator the value     */    public void setComparator(Comparator columnComparator)    {        this.comparator = columnComparator;    }    /**     * Get the comparator for sorting this column.     * @return the comparator     */    public Comparator getComparator()    {        return this.comparator;    }    /**     * Will we be keeping a total for this column?     * @return true if we are totaling     */    public boolean isTotaled()    {        return totaled;    }    /**     * Setter for totaled.     * @param isTotaled the value     */    public void setTotaled(boolean isTotaled)    {        this.totaled = isTotaled;    }    /**     * Add the value of this parameter to the column total. The param will be converted to a number via a property     * Converter.     * @param value the value     * @see Converter#convert(Class, Object)     */    private void addToTotal(Object value)    {        if (value != null && value instanceof Number)        {            this.total = this.total + ((Number) value).doubleValue();        }    }    /**     * Get the current total.     * @return the current total.     */    public double getTotal()    {        return this.total;    }    /**     * Add a new cell to this column.     * @param column the value     */    public void addCell(Column column)    {        // Not actually going to hold a reference to the added cell - we just need access for the totals        if (this.totaled)        {            try            {                Object val = column.getValue(false);                addToTotal(val);            }            catch (ObjectLookupException e)            {                throw new RuntimeException(e);            }            catch (DecoratorException e)            {                throw new RuntimeException(e);            }        }    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
jizz一区二区| 韩国av一区二区三区四区| 91在线播放网址| 综合精品久久久| 一本在线高清不卡dvd| 亚洲私人黄色宅男| 欧美色欧美亚洲另类二区| 偷拍日韩校园综合在线| 日韩一区国产二区欧美三区| 国产在线视频一区二区三区| 国产精品久线在线观看| 色呦呦国产精品| 石原莉奈一区二区三区在线观看 | 国产一区二区成人久久免费影院| 久久久久久黄色| 99久久免费精品高清特色大片| 一区二区三区不卡视频在线观看| 欧美日韩高清影院| 国产麻豆精品视频| 亚洲青青青在线视频| 欧美揉bbbbb揉bbbbb| 国内外成人在线| 亚洲人成7777| 26uuu国产电影一区二区| av中文一区二区三区| 日本三级亚洲精品| 久久精品亚洲国产奇米99| 91福利精品第一导航| 美女网站在线免费欧美精品| 亚洲欧洲av一区二区三区久久| 欧美日韩另类一区| 丁香六月综合激情| 日本一区中文字幕| 综合婷婷亚洲小说| 精品国产91久久久久久久妲己| 99久久精品免费看| 精品无码三级在线观看视频| 亚洲青青青在线视频| 2017欧美狠狠色| 欧美日韩精品福利| 91精品国产免费| 成人av先锋影音| 精品亚洲aⅴ乱码一区二区三区| 亚洲麻豆国产自偷在线| 国产欧美日韩另类一区| 欧美另类一区二区三区| av在线不卡观看免费观看| 精一区二区三区| 日韩一区精品视频| 亚洲欧美一区二区三区久本道91| 久久综合成人精品亚洲另类欧美 | 国产精品自拍在线| 日日夜夜免费精品视频| 最新国产精品久久精品| 久久综合九色综合97_久久久| 欧美日韩大陆一区二区| 91色.com| 99re热这里只有精品视频| 国产大片一区二区| 韩国女主播一区| 日韩在线卡一卡二| 午夜精品福利在线| 亚洲一区二区高清| 亚洲免费观看高清完整版在线观看| 久久精子c满五个校花| 2023国产一二三区日本精品2022| 欧美一区二区精品| 91精品婷婷国产综合久久| 欧美日韩中文字幕一区| 欧美日韩在线播放| 亚洲欧洲精品一区二区三区| 国产三级精品三级| 国产欧美一区二区三区鸳鸯浴| 精品久久五月天| 久久这里只有精品视频网| 精品久久久久久久久久久院品网| 欧美一区二区三区在线电影| 91精品蜜臀在线一区尤物| 欧美高清视频一二三区| 337p亚洲精品色噜噜狠狠| 欧美一区二区三区精品| 日韩精品一区二区三区蜜臀| 精品日韩一区二区三区免费视频| 91精品福利在线一区二区三区 | 韩国欧美国产一区| 国产中文字幕一区| 成人午夜激情视频| 成人做爰69片免费看网站| 成人精品gif动图一区| 91色综合久久久久婷婷| 91在线观看美女| 欧美视频一区二区三区四区| 717成人午夜免费福利电影| 欧美在线制服丝袜| 欧美天堂一区二区三区| 欧美亚洲免费在线一区| 91福利区一区二区三区| 在线播放欧美女士性生活| 日韩一卡二卡三卡| 国产欧美一区二区精品久导航| 久久久久久久av麻豆果冻| 中文字幕一区av| 亚洲国产日韩a在线播放| 久久国产人妖系列| 福利一区二区在线| 国产成人精品影院| 成人三级伦理片| 欧美图片一区二区三区| 欧美一区二区黄| 国产精品网站导航| 一区二区三区不卡在线观看| 亚洲一二三专区| 国产麻豆精品一区二区| 91精品福利视频| 日韩天堂在线观看| 国产亚洲美州欧州综合国| 亚洲免费色视频| 蓝色福利精品导航| 99国产精品99久久久久久| 欧美高清www午色夜在线视频| 久久久亚洲国产美女国产盗摄| 一区二区三区电影在线播| 久久99在线观看| 成人福利视频网站| 日韩久久精品一区| 亚洲国产精品久久一线不卡| 国产成人精品影院| 制服丝袜在线91| 亚洲免费看黄网站| 奇米一区二区三区av| 色综合久久久久综合99| 亚洲精品在线免费播放| 亚洲v日本v欧美v久久精品| 九九热在线视频观看这里只有精品| 色哟哟一区二区在线观看| 国产欧美一区二区在线| 免费看黄色91| 91色porny在线视频| 国产婷婷色一区二区三区四区 | 亚洲精品视频一区二区| 国产精品一区二区男女羞羞无遮挡| 欧美天堂一区二区三区| 亚洲色图在线看| 国产999精品久久| 欧美疯狂做受xxxx富婆| 一区二区三区四区在线| 国产成人av电影在线| 日韩一级片在线播放| 午夜一区二区三区在线观看| 色欧美片视频在线观看 | 久久蜜臀精品av| 人人超碰91尤物精品国产| 日本福利一区二区| 亚洲区小说区图片区qvod| 99这里都是精品| 日本一区二区三区高清不卡| 国产做a爰片久久毛片| 欧美一二三四在线| 美女网站色91| 精品精品国产高清a毛片牛牛| 亚洲成人你懂的| 91在线精品一区二区| 亚洲欧美在线高清| av不卡一区二区三区| 国产精品久久久久四虎| 成人高清免费观看| 国产精品久久久久久久久久久免费看| 国产精品一区二区你懂的| 国产欧美日韩视频一区二区| 成人精品一区二区三区四区| 国产精品美女一区二区三区| 成人av综合一区| 国产精品美女久久久久久2018| 麻豆91在线看| 久久久久久久久久美女| 男女性色大片免费观看一区二区| 在线播放视频一区| 天天综合天天综合色| 日韩欧美激情一区| 免费欧美日韩国产三级电影| 欧美精品一区二区三区一线天视频| 激情五月婷婷综合| 国产精品久久久久久久久快鸭| 91女厕偷拍女厕偷拍高清| 亚洲大片精品永久免费| 日韩精品专区在线| 成人精品电影在线观看| 亚洲欧美日韩在线不卡| 99re视频精品| 日韩在线卡一卡二| 亚洲精品在线网站| 99久久99久久精品国产片果冻| 亚洲午夜免费福利视频| 精品国产乱码久久久久久1区2区 | 麻豆91精品91久久久的内涵| 久久女同精品一区二区| 91影院在线免费观看| 天天影视网天天综合色在线播放| 欧美白人最猛性xxxxx69交| 成人精品鲁一区一区二区|