Searched refs:targetChild (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextSupport.java355 * @param targetChild the child to create the Child on behalf of
359 protected BCSChild createBCSChild(Object targetChild, Object peer) { argument
360 return new BCSChild(targetChild, peer);
374 * @param targetChild The child objects to nest
379 public boolean add(Object targetChild) { argument
381 if (targetChild == null) throw new IllegalArgumentException();
386 if (children.containsKey(targetChild)) return false; // test before locking
389 if (children.containsKey(targetChild)) return false; // check again
391 if (!validatePendingAdd(targetChild)) {
399 BeanContextChild cbcc = getChildBeanContextChild(targetChild);
483 remove(Object targetChild) argument
496 remove(Object targetChild, boolean callChildSetBC) argument
1128 validatePendingAdd(Object targetChild) argument
1142 validatePendingRemove(Object targetChild) argument
[all...]
H A DBeanContextServicesSupport.java582 * @param targetChild the child to create the Child on behalf of
583 * @param peer the peer if the targetChild and peer are related by BeanContextProxy
586 protected BCSChild createBCSChild(Object targetChild, Object peer) { argument
587 return new BCSSChild(targetChild, peer);

Completed in 35 milliseconds