所有类
|
摘要: 嵌套 | 字段 | 构造方法 | 方法 |
详细信息: 字段 | 构造方法 | 方法 |
java.beans.beancontext
接口 BeanContext
-
所有超级接口:
-
BeanContextChild, Collection, DesignMode, Iterable, Visibility
-
所有已知子接口:
-
BeanContextServices
-
所有已知实现类:
-
BeanContextServicesSupport, BeanContextSupport
-
public interface BeanContext
- extends BeanContextChild, Collection, DesignMode, Visibility
BeanContext 是 JavaBean 的逻辑层次容器。
-
从以下版本开始:
-
1.2
-
另请参见:
-
Beans
, BeanContextChild
, BeanContextMembershipListener
, PropertyChangeEvent
, java.beans.VetoableChangeEvent
, DesignMode
, Visibility
, Collection
从接口 java.util.Collection 继承的方法 |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
globalHierarchyLock
static final Object globalHierarchyLock
-
BeanContext
和 BeanContextServices
实现者均使用此全局锁定来序列化 BeanContext
中的更改和所有服务请求等。
instantiateChild
Object instantiateChild(String beanName)
throws IOException,
ClassNotFoundException
-
实例化指定为此
BeanContext
的一个子级的 javaBean。JavaBean 的实现源自 beanName 参数的值,并由 java.beans.Beans.instantiate()
方法定义。
-
-
-
参数:
-
beanName
- 要实例化为此 BeanContext
的子级的 JavaBean 的名称
-
抛出:
-
IOException
-
ClassNotFoundException
- 如果没有找到由 beanName 参数标识的类
-
IOException
-
ClassNotFoundException
getResourceAsStream
InputStream getResourceAsStream(String name,
BeanContextChild bcc)
throws IllegalArgumentException
-
与
java.lang.ClassLoader.getResourceAsStream()
类似,此方法允许 BeanContext
实现协调子 Component
和基础 ClassLoader
之间的行为。
-
-
-
参数:
-
name
- 资源的名称
-
bcc
- 指定的子级
-
返回:
-
用于读取资源的
InputStream
,如果无法找到资源,则返回 null
。
-
抛出:
-
IllegalArgumentException
- 如果资源无效
-
IllegalArgumentException
getResource
URL getResource(String name,
BeanContextChild bcc)
throws IllegalArgumentException
-
与
java.lang.ClassLoader.getResource()
类似,此方法允许 BeanContext
实现协调子 Component
和基础 ClassLoader
之间的行为。
-
-
-
参数:
-
name
- 资源的名称
-
bcc
- 指定的子级
-
返回:
-
指定子级的指定资源的
URL
-
抛出:
-
IllegalArgumentException
- 如果资源无效
-
IllegalArgumentException
addBeanContextMembershipListener
void addBeanContextMembershipListener(BeanContextMembershipListener bcml)
-
添加指定的
BeanContextMembershipListener
,以便无论何时添加或移除一个子 Component
,都可以接收来自此 BeanContext
的 BeanContextMembershipEvents
。
-
-
-
参数:
-
bcml
- 要添加的 BeanContextMembershipListener
removeBeanContextMembershipListener
void removeBeanContextMembershipListener(BeanContextMembershipListener bcml)
-
移除指定的
BeanContextMembershipListener
,以便在添加或移除子 Component
时不再接收 BeanContextMembershipEvent
。
-
-
-
参数:
-
bcml
- 要移除的 BeanContextMembershipListener
所有类
|
摘要: 嵌套 | 字段 | 构造方法 | 方法 |
详细信息: 字段 | 构造方法 | 方法 |