Why do you use Context Object
Answers were Sorted based on User's Feedback
Answer / eniact
I use a Context Object to encapsulate state in a protocol-independent way to be shared throughout your application.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ramadass
To access a value as Global for a particular application.
| Is This Answer Correct ? | 5 Yes | 3 No |
What are the main classes of the list interfaces? : java collections
How do I find jre path in windows?
Which of the following declaration is wrong? int i=45; float j = 45.0; double k=45.0;
Which interface does java.util.hashtable implement?
What is java collection? : java collections
what is acl(access control list)?
What is need of DAO? Write one simple DAO example?
What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
how to delete cookie information?and when it will delete?
waht are architecture of web application?
What are the different types of ways where you can iterate over a list? : java collections