Why is java robust?
Java is termed as robust because of the following features:
– Lack of pointers: Java does not have pointers which make it secure
– Garbage Collection: Java automatically clears out unused objects from memory that are unused
– Java has strong memory management and supports dynamic linking.
| Is This Answer Correct ? | 0 Yes | 0 No |
On which platform j2ee is based?
What is jaxr provider?
What is home handle?
What is frame in java?
What is ebxml?
What is authorization constraint?
public class ActionSearchBean extends GenericSearchBean<ActionDTO, Long, ActionDTO> { @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 ?
Is j2ee a programming language?
What are the main components of a class in java?
servlet has not any main method in it how does it work by JVM?
Where is java used?
What is java mobile?