javax.faces.event
Class ScopeContext

java.lang.Object
  extended by javax.faces.event.ScopeContext

public class ScopeContext
extends Object

A structure that contains the name of the scope and the scope itself exposed as a Map<String, Object>.

Since:
2.0

Constructor Summary
ScopeContext(String scopeName, Map<String,Object> scope)
          

Construct this structure with the supplied arguments.

 
Method Summary
 Map<String,Object> getScope()
          

Return the scope itself, exposed as a Map.

 String getScopeName()
          

Return the name of this custom scope.

 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScopeContext

public ScopeContext(String scopeName,
                    Map<String,Object> scope)

Construct this structure with the supplied arguments.

Parameters:
scopeName - the name of the scope
scope - the scope itself
Method Detail

getScopeName

public String getScopeName()

Return the name of this custom scope.


getScope

public Map<String,Object> getScope()

Return the scope itself, exposed as a Map.



Copyright © 2002-2009 Sun Microsystems, Inc. All Rights Reserved.