Searched defs:bcml (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContext.java111 * @param bcml the <code>BeanContextMembershipListener</code> to be added
113 void addBeanContextMembershipListener(BeanContextMembershipListener bcml); argument
120 * @param bcml the <code>BeanContextMembershipListener</code>
123 void removeBeanContextMembershipListener(BeanContextMembershipListener bcml); argument
H A DBeanContextSupport.java620 * @param bcml the BeanContextMembershipListener to add
624 public void addBeanContextMembershipListener(BeanContextMembershipListener bcml) { argument
625 if (bcml == null) throw new NullPointerException("listener");
628 if (bcmListeners.contains(bcml))
631 bcmListeners.add(bcml);
638 * @param bcml the BeanContextMembershipListener to remove
642 public void removeBeanContextMembershipListener(BeanContextMembershipListener bcml) { argument
643 if (bcml == null) throw new NullPointerException("listener");
646 if (!bcmListeners.contains(bcml))
649 bcmListeners.remove(bcml);
[all...]

Completed in 289 milliseconds