📄 testcheckboxlist.java
字号:
/* * Copyright (c) 2005 Your Corporation. All Rights Reserved. */package org.apache.myfaces.examples.misc;import java.util.ArrayList;import java.util.List;/** * @author Sylvain Vieujot (latest modification by $Author: matzew $) * @version $Revision: 1.1 $ $Date: 2005/03/24 16:47:10 $ */public class TestCheckBoxList{ private List testCheckBoxes; public TestCheckBoxList(){ testCheckBoxes = new ArrayList(3); for(int i=0 ; i<3 ; i++) testCheckBoxes.add( new TestCheckBox() ); } public List getTestCheckBoxes() { return testCheckBoxes; } public void setTestCheckBoxes(List testCheckBoxes) { this.testCheckBoxes = testCheckBoxes; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -