Searched refs:BeanContext (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextEvent.java30 import java.beans.beancontext.BeanContext;
36 * from, and pertaining to the semantics of, a <code>BeanContext</code>.
39 * <code>BeanContext</code>s. The <code>setPropagatedFrom()</code>
41 * <code>BeanContext</code> to identify itself as the source
47 * @see java.beans.beancontext.BeanContext
56 * @param bc The BeanContext source
58 protected BeanContextEvent(BeanContext bc) {
63 * Gets the <code>BeanContext</code> associated with this event.
64 * @return the <code>BeanContext</code> associated with this event.
66 public BeanContext getBeanContex
[all...]
H A DBeanContextChild.java32 import java.beans.beancontext.BeanContext;
37 * execution environment, or context, as defined by the BeanContext
54 * nesting BeanContext instance or other resources obtained
55 * from the BeanContext via any unspecified mechanisms.
61 * @see java.beans.beancontext.BeanContext
76 * <code>BeanContext</code> instance, or <code>null</code>),
78 * <code>BeanContext</code> instance, or <code>null</code>).
80 * A change in the value of the nesting BeanContext property of this
83 * @param bc The <code>BeanContext</code> with which
86 * addition of the specified <code>BeanContext</cod
[all...]
H A DBeanContextMembershipEvent.java30 import java.beans.beancontext.BeanContext;
40 * the membership of a particular <code>BeanContext</code>.
43 * invoked on a given <code>BeanContext</code> instance.
47 * <code>BeanContext</code>'s
53 * @see java.beans.beancontext.BeanContext
63 * @param bc The BeanContext source
68 public BeanContextMembershipEvent(BeanContext bc, Collection changes) {
80 * @param bc The BeanContext source
86 public BeanContextMembershipEvent(BeanContext bc, Object[] changes) {
H A DBeanContextChildSupport.java54 * @see java.beans.beancontext.BeanContext
93 * Sets the <code>BeanContext</code> for
95 * @param bc the new value to be assigned to the <code>BeanContext</code>
99 public synchronized void setBeanContext(BeanContext bc) throws PropertyVetoException {
102 BeanContext oldValue = beanContext;
103 BeanContext newValue = bc;
139 * Gets the nesting <code>BeanContext</code>
141 * @return the nesting <code>BeanContext</code> for
144 public synchronized BeanContext getBeanContext() { return beanContext; }
211 * A service provided by the nesting BeanContext ha
[all...]
H A DBeanContextServices.java32 import java.beans.beancontext.BeanContext;
41 * The BeanContextServices interface provides a mechanism for a BeanContext
45 public interface BeanContextServices extends BeanContext, BeanContextServicesListener {
48 * Adds a service to this BeanContext.
147 * Adds a <code>BeanContextServicesListener</code> to this BeanContext
154 * from this <code>BeanContext</code>
H A DBeanContextServiceAvailableEvent.java51 super((BeanContext)bcs);
H A DBeanContextServiceRevokedEvent.java50 super((BeanContext)bcs);
H A DBeanContext.java41 * The BeanContext acts a logical hierarchical container for JavaBeans.
56 public interface BeanContext extends BeanContextChild, Collection, DesignMode, Visibility { interface in inherits:BeanContextChild,Collection,DesignMode,Visibility
60 * child of this <code>BeanContext</code>.
67 * as a child of this <code>BeanContext</code>
76 * this method allows a <code>BeanContext</code> implementation
92 * method allows a <code>BeanContext</code> implementation to interpose
108 * this <code>BeanContext</code> whenever it adds
126 * This global lock is used by both <code>BeanContext</code>
128 * to serialize changes in a <code>BeanContext</code>
H A DBeanContextSupport.java64 * java.beans.beancontext.BeanContext interface.
67 * Since this class directly implements the BeanContext interface, the class
76 implements BeanContext,
89 * @param peer The peer <tt>BeanContext</tt> we are
93 * @param lcle The current Locale for this BeanContext. If
95 * is assigned to the <tt>BeanContext</tt> instance.
103 public BeanContextSupport(BeanContext peer, Locale lcle, boolean dTime, boolean visible) {
116 * @param peer The peer <tt>BeanContext</tt> we
119 * @param lcle The current Locale for this <tt>BeanContext</tt>. If
121 * is assigned to the <tt>BeanContext</t
[all...]
H A DBeanContextServicesSupport.java70 * @param peer The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
71 * @param lcle The current Locale for this BeanContext.
84 * @param peer The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
85 * @param lcle The current Locale for this BeanContext.
96 * @param peer The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
97 * @param lcle The current Locale for this BeanContext.
107 * @param peer The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
141 * @return the instance of <tt>BeanContext</tt>
678 synchronized(BeanContext.globalHierarchyLock) {
719 synchronized(BeanContext
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DAppletInitializer.java30 import java.beans.beancontext.BeanContext;
64 * <li> If BeanContext parameter is null, then it shall associate the
66 * Container via an invocation of add(). If the BeanContext parameter is
67 * non-null, then it is the responsibility of the BeanContext to associate
74 * @param bCtxt The BeanContext intended for this Applet, or
78 void initialize(Applet newAppletBean, BeanContext bCtxt);
H A DBeans.java37 import java.beans.beancontext.BeanContext;
91 * @param beanContext The BeanContext in which to nest the new bean
98 public static Object instantiate(ClassLoader cls, String beanName, BeanContext beanContext) throws IOException, ClassNotFoundException {
145 * @param beanContext The BeanContext in which to nest the new bean
153 public static Object instantiate(ClassLoader cls, String beanName, BeanContext beanContext, AppletInitializer initializer)
321 // now, if there is a BeanContext, add the bean, if applicable.
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4652928.java31 import java.beans.beancontext.BeanContext;
46 List<BeanContext> list = new ArrayList<BeanContext>();
52 private static BeanContext fill(BeanContext context) {
/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4132698.java31 import java.beans.beancontext.BeanContext;
51 public Test4132698(BeanContext bc, Object[] objects) {

Completed in 93 milliseconds