📄 knownvalue.java
字号:
package org.displaytag.test;/** * Simple test data provider. * @author rapruitt * @version $Revision: 1081 $ ($Author: fgiust $) */public class KnownValue{ /** * constant for the "ant" property (this is both the property name and value). */ public static final String ANT = "ant"; /** * constant for the "bee" property (this is both the property name and value). */ public static final String BEE = "bee"; /** * constant for the "camel" property (this is both the property name and value). */ public static final String CAMEL = "camel"; /** * getter for the "ant" property. * @return ANT */ public String getAnt() { return ANT; } /** * getter for the "bee" property. * @return BEE */ public String getBee() { return BEE; } /** * getter for the "camel" property. * @return CAMEL */ public String getCamel() { return CAMEL; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -