1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
package Test;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.richfaces.component.UIScrollableDataTable;
import org.richfaces.model.selection.SimpleSelection;
import Test.BDD;
import java.sql.Connection;
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
public class Recherche11 {
private SimpleSelection selection = new SimpleSelection();
private List<EMPLOYES> list=null;
private EMPLOYES SelectedEM;
private UIScrollableDataTable table;
private String Rech, NOM, Selected;
private int MAT ;
public void setRech(String Rech)
{
this.Rech=Rech;
}
public String getRech()
{
return Rech;
}
public List<EMPLOYES> getlist() {
Connection con= new BDD().getCon();
String SqlStr="";
Statement stmt;
list = new ArrayList<EMPLOYES>();
//try
{
//SqlStr="SELECT NOM FROM dc_demandeurex WHERE NOM='"+ Rech +"'";
//stmt = con.createStatement();
//ResultSet RS = stmt.executeQuery(SqlStr);
// if (RS.next())
if (rech!=null)
{
{
list.add( new EMPLOYES("2",2,"2","2","2","2" ));
}
}
else
{
list.add( new EMPLOYES("44",44,"44","44","44","44" ));
}
// RS.close();
//con.close();
}
//catch (SQLException e) {
// e.printStackTrace();
//}
return list;
}
public String getlist1() {
Connection con= new BDD().getCon();
String SqlStr="";
Statement stmt;
list = new ArrayList<EMPLOYES>();
//try
{
//SqlStr="SELECT NOM FROM dc_demandeurex WHERE NOM='"+ Rech +"'";
//stmt = con.createStatement();
//ResultSet RS = stmt.executeQuery(SqlStr);
// if (RS.next())
if (getRech()!=null)
{
list.add( new EMPLOYES("5A",5,"5A","5","5","5" ));
}
else
{
list.add( new EMPLOYES("3A",3,"3A","3","3","3" ));
}
// RS.close();
//con.close();
}
//catch (SQLException e) {
// e.printStackTrace();
//}
return "";
}
public SimpleSelection getSelection()
{
return selection;
}
public void setSelection(SimpleSelection selection)
{
this .selection = selection;
}
//*************************************************
//********************************************
public String getSelected()
{
return Selected;
}
public void setSelected(String Selected)
{
this .Selected = Selected;
}
//**********************************
public String getNom()
{
return NOM;
}
public void setNOM(String NOM)
{
this .NOM = NOM;
}
//********************************
public int getMAT()
{
return MAT;
}
public void setMAT(int MAT)
{
this .MAT = MAT;
}
//*********************************
public String takeSelection() {
MAT=getSelectedEM().getMATRI();
NOM=getSelectedEM().getNOM();
Selected= getSelectedEM().getCODE_SOC();
if (getSelection().isSelectAll()){
}else{
Iterator<Object> iterator = getSelection().getKeys();
while (iterator.hasNext()){
Object key = iterator.next();
table.setRowKey(key);
// getSelectedEM().getNOM();//(table.getRowData());
}
}
System.out.print("hsss"+Rech+"sssg");
return null;
}
//******************************************
public EMPLOYES getSelectedEM() {
return SelectedEM;
}
public void setSelectedEM( EMPLOYES SelectedEM)
{
this.SelectedEM = SelectedEM;
}
} |
Partager