Package org.apache.uima.resource.impl
Class SessionNamespaceView_impl
- java.lang.Object
-
- org.apache.uima.resource.impl.SessionNamespaceView_impl
-
- All Implemented Interfaces:
java.io.Serializable
,Session
public class SessionNamespaceView_impl extends java.lang.Object implements Session
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
mNamespace
private Session
mRootSession
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SessionNamespaceView_impl(Session aRootSession, java.lang.String aNamespace)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
get(java.lang.String aKey)
Gets an object from the Sessionvoid
put(java.lang.String aKey, java.lang.Object aValue)
Stores an object in the Sessionvoid
setRootSession(Session aSession)
Sets the root session for this view.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
mRootSession
private Session mRootSession
-
mNamespace
private java.lang.String mNamespace
-
-
Constructor Detail
-
SessionNamespaceView_impl
public SessionNamespaceView_impl(Session aRootSession, java.lang.String aNamespace)
-
-
Method Detail
-
put
public void put(java.lang.String aKey, java.lang.Object aValue)
Description copied from interface:Session
Stores an object in the Session
-
get
public java.lang.Object get(java.lang.String aKey)
Description copied from interface:Session
Gets an object from the Session
-
setRootSession
public void setRootSession(Session aSession)
Sets the root session for this view. Not part of Session interface.- Parameters:
aSession
- the root session
-
-