Author: pyaschenko
Date: 2007-10-18 08:51:21 -0400 (Thu, 18 Oct 2007)
New Revision: 3442
Modified:
branches/3.1.x/samples/tooltip-sample/src/main/java/org/richfaces/Bean.java
Log:
RF-1101
Modified: branches/3.1.x/samples/tooltip-sample/src/main/java/org/richfaces/Bean.java
===================================================================
--- branches/3.1.x/samples/tooltip-sample/src/main/java/org/richfaces/Bean.java 2007-10-18
12:51:11 UTC (rev 3441)
+++ branches/3.1.x/samples/tooltip-sample/src/main/java/org/richfaces/Bean.java 2007-10-18
12:51:21 UTC (rev 3442)
@@ -35,9 +35,18 @@
String text1 = "ToolTip content1";
String text2 = "ToolTip content2";
String text3 = "ToolTip content3";
+ boolean check = false;
private int counter;
+ public boolean getCheck() {
+ return check;
+ }
+
+ public void toggleCheck() {
+ check = !check;
+ }
+
public String getText() {
return text;
}
Show replies by date