Why is java called technology?
900
What is certificate authority?
979
Why awt is used in java?
901
Which server is best for java?
914
What is build tool in java?
964
Define authorization constraint?
1009
What is assembly in java?
913
Enlist the technologies embraced in j2ee?
905
What is jaxr provider?
932
What is japplet in java?
998
What are the components of J2EE application?
1019
What is multi tier architecture in j2ee?
898
What is the best java compiler?
880
public class ActionSearchBean extends
GenericSearchBean {
@Override
public String search() {
data.setRowCount(null);
if(data.getRowCount()==0){
data.getNoRecordFound().setRendered(true);
data.getDataScroller().setRendered(false);
}
return "searchAction";
}
@Override
public String clear() {
data.setRowCount(null);
if (data.getRowCount() > 0){
data.getNoRecordFound().setRendered(false);
data.getDataScroller().setRendered(true);
}else{
data.getNoRecordFound().setRendered(true);
data.getDataScroller().setRendered(false);
}
data.setModel(new ActionDTO());
data.setRowCount(null);
return "searchAction";
}
}
what is the purpose of @Override ...what will do @Override
here ?
2468
What is the concept of connection pooling?
1016