BeanContextSupport context = new BeanContextSupport();
System.out.println("Number of children nested into the context: " + context.size());
BeanContextChildSupport child = null;
try {
child = (BeanContextChildSupport)context.instantiateChild("java.beans.beancontext.BeanContextChildSupport");
}
catch(IOException e){
System.out.println("IOException occurred: " + e.getMessage());
}
catch(ClassNotFoundException e){
System.out.println("Class not found: " + e.getMessage());
}
System.out.println("Number of children nested into the context: " + context.size());