📄 tabledecoratorcssrow.java
字号:
package org.displaytag.decorator;/** * Test decorator used in tests. * @author Fabrizio Giustina * @version $Revision$ ($Author$) */public class TableDecoratorCssRow extends TableDecorator{ /** * @see org.displaytag.decorator.TableDecorator#addRowId() */ public String addRowId() { return "rowid" + getViewIndex(); } /** * @see org.displaytag.decorator.TableDecorator#addRowClass() */ public String addRowClass() { if (getViewIndex() == 2) { return "highlighted"; } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -