Package repast.simphony.context
Interface ContextFactory<T>
- Type Parameters:
T
-
- All Known Implementing Classes:
DefaultContextFactory
public interface ContextFactory<T>
Interface defines the capability to create
Context
objects.-
Method Summary
Modifier and TypeMethodDescriptioncreateContext
(Object contextId) Creates a newContext
with the given identifier.
-
Method Details
-
createContext
Creates a newContext
with the given identifier.- Parameters:
contextId
- the identifier to associate with the createdContext
object.- Returns:
- a new
Context
object.
-