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

Context (JBoss Seam API Documentation) - JBoss Seam 1.2.0 patch1 API 英文版文档


org.jboss.seam.contexts
Interface Context

All Known Implementing Classes:
BusinessProcessContext, ClientConversationContext, FacesApplicationContext, MapContext, PageContext, ServerConversationContext, WebApplicationContext, WebRequestContext, WebSessionContext

public interface Context

A set of named components and items of data that is associated with a particular seam context.

Version:
$Revision: 1.7 $
Author:
Gavin King

Method Summary
 void flush()
           
 Object get(Class clazz)
           
 Object get(String name)
           
 String[] getNames()
           
 ScopeType getType()
           
 boolean isSet(String name)
           
 void remove(String name)
           
 void set(String name, Object value)
           
 

Method Detail

get

Object get(String name)

get

Object get(Class clazz)

set

void set(String name,
         Object value)

remove

void remove(String name)

isSet

boolean isSet(String name)

getNames

String[] getNames()

flush

void flush()

getType

ScopeType getType()