• 大小: 13KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: Java
  • 标签: jsf  richfaces  jar  ajax  

资源简介

jsf中richfaces的jar包及源文件等jsf中richfaces的jar包及源文件等jsf中richfaces的jar包及源文件等

资源截图

代码片段和文件信息

package test;

import java.util.Iterator;
import java.util.Vector;

import org.richfaces.component.UIDataTable;
import org.ajax4jsf.component.html.HtmlAjaxRepeat;

public class Bean {
private String caption;
private Vector people = new Vector();
private UIDataTable table;
//private Integer curRow = new Integer(-2);
private int curRow = -2;
private Vector reps = new Vector();
HtmlAjaxRepeat repeat;

public Bean(){
caption = “person list“;
add();
reps.add(“00001“);
reps.add(“00002“);
reps.add(“00003“);
}


public String getCaption() {
return caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public Vector getPeople() {
return people;
}
public void setPeople(Vector people) {
this.people = people;
}


public UIDataTable getTable() {
return table;
}


public void setTable(UIDataTable table) {
this.table = table;
}



public int getCurRow() {
return curRow;
}


public void setCurRow(int curRow) {
this.curRow = curRow;
}



public Vector getReps() {
return reps;
}



public HtmlAjaxRepeat getRepeat() {
return repeat;
}


public void setRepeat(HtmlAjaxRepeat repeat) {
this.repeat = repeat;
}


public void save(){
for(Iterator ite = people.iterator();ite.hasNext();){
Person p = ite.next();
System.out.println(“=============“+p.getName()+“ has “+p.getAge());
}
}

public void del(){
System.out.println(“cur row is “+curRow);
/*
if((curRow.intValue()) >= 0){
people.removeElementAt((curRow.intValue()));
}
*/
if((curRow) >= 0){
people.removeElementAt((curRow));
}

}

public void add(){
people.add(new Person(“abc““m“20“qinghe“));
people.add(new Person(“def““f“30“yunnan“));
people.add(new Person(“ghi““m“25“tangshan“));
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2007-10-08 15:34  myweb\
     文件         767  2007-10-08 15:42  myweb\.classpath
     目录           0  2007-10-08 15:34  myweb\.metadata\
     目录           0  2007-10-08 15:34  myweb\.metadata\WebContent\
     目录           0  2007-10-08 15:34  myweb\.metadata\WebContent\WEB-INF\
     文件         192  2007-09-30 23:43  myweb\.metadata\WebContent\WEB-INF\faces-config.pageflow
     文件        1060  2007-10-08 15:42  myweb\.project
     目录           0  2007-10-08 15:34  myweb\.settings\
     文件         329  2007-09-08 09:57  myweb\.settings\org.eclipse.jdt.core.prefs
     文件         358  2007-09-08 09:57  myweb\.settings\org.eclipse.jst.common.project.facet.core.prefs
     文件         389  2007-09-08 09:57  myweb\.settings\org.eclipse.wst.common.component
     文件         298  2007-09-08 09:57  myweb\.settings\org.eclipse.wst.common.project.facet.core.xml
     目录           0  2007-11-07 14:24  myweb\build\
     文件        1761  2007-10-08 15:51  myweb\build\build.xml
     目录           0  2007-11-07 14:37  myweb\build\classes\
     目录           0  2007-11-05 14:43  myweb\src\
     文件         594  2007-11-05 15:08  myweb\src\myweb.dia
     目录           0  2007-10-08 15:34  myweb\src\test\
     文件        1852  2007-10-17 17:27  myweb\src\test\Bean.java
     文件         802  2007-10-01 00:17  myweb\src\test\Person.java
     目录           0  2007-10-08 15:34  myweb\WebContent\
     文件          81  2007-11-05 15:21  myweb\WebContent\index.jsp
     目录           0  2007-10-08 15:34  myweb\WebContent\meta-INF\
     文件          39  2007-09-08 09:57  myweb\WebContent\meta-INF\MANIFEST.MF
     目录           0  2007-10-17 17:12  myweb\WebContent\pages\
     文件        2294  2007-11-07 14:22  myweb\WebContent\pages\testDataTable.jsp
     文件        2451  2007-10-17 17:27  myweb\WebContent\pages\testRepeat.jsp
     目录           0  2007-11-07 14:24  myweb\WebContent\WEB-INF\
     文件         423  2007-09-30 23:43  myweb\WebContent\WEB-INF\faces-config.xml
     文件        1363  2007-10-01 00:32  myweb\WebContent\WEB-INF\web.xml
     文件        4138  2015-04-29 16:53  QQ图片20150429165354.png
............此处省略0个文件信息

评论

共有 条评论