站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.0.0 API 英文版文档

Startup (JBoss Seam API Documentation) - JBoss Seam 1.0.0 API 英文版文档


org.jboss.seam.annotations
Annotation Type Startup


@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface Startup

Specifies that an instance of this component is created at system initialization time for an application scoped component, or when a session is started for a session scoped component. May only be applied to APPLICATION or SESSION scoped components.

Author:
Gavin King

Optional Element Summary
 String[] depends
          A list of other application scope components that should be started before this one, if they are installed.
 

depends

public abstract String[] depends
A list of other application scope components that should be started before this one, if they are installed.

Default:
{}