Searched defs:bcc (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContext.java81 * @param bcc the specified child
88 InputStream getResourceAsStream(String name, BeanContextChild bcc) throws IllegalArgumentException; argument
97 * @param bcc the specified child
103 URL getResource(String name, BeanContextChild bcc) throws IllegalArgumentException; argument
H A DBeanContextChildSupport.java83 public BeanContextChildSupport(BeanContextChild bcc) { argument
86 beanContextChildPeer = (bcc != null) ? bcc : this;
H A DBeanContextServicesSupport.java321 BCSSChild(Object bcc, Object peer) { super(bcc, peer); } argument
H A DBeanContextSupport.java321 BCSChild(Object bcc, Object peer) { argument
324 child = bcc;
655 * @param bcc the child object making the request.
661 public InputStream getResourceAsStream(String name, BeanContextChild bcc) { argument
663 if (bcc == null) throw new NullPointerException("bcc");
665 if (containsKey(bcc)) {
666 ClassLoader cl = bcc.getClass().getClassLoader();
675 * @param bcc the child object making the request.
680 public URL getResource(String name, BeanContextChild bcc) { argument
[all...]

Completed in 878 milliseconds