]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/ui/iCheckBoxList/ICheckBoxListItem.java
1. Update ICheckBoxList to add one attribute "selected". Set the first item of ICheck...
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / ui / iCheckBoxList / ICheckBoxListItem.java
index 39fa641d0e5596f0340d8a4c8dbd2e96da269d39..a087887e2f4ad0e793846a1034d4741cc3dd3aa1 100644 (file)
@@ -22,6 +22,8 @@ public class ICheckBoxListItem {
     protected String text;\r
 \r
     protected boolean checked;\r
+    \r
+    protected boolean selected;\r
 \r
     /**\r
      This is the default constructor to set check box item string\r
@@ -71,4 +73,12 @@ public class ICheckBoxListItem {
         this.text = text;\r
     }\r
 \r
+    public boolean isSelected() {\r
+        return selected;\r
+    }\r
+\r
+    public void setSelected(boolean selected) {\r
+        this.selected = selected;\r
+    }\r
+\r
 }\r