Entity within
EntityContainer.See: Description
| Interface | Description |
|---|---|
| Entity |
Entity plays the greatest role in the overall data model.
|
| EntityContainer |
This is an
Entity collection. |
| EntityFactory |
An entity factory is used to control the creation, transfer and killing of
Entity within
the entire tree. |
| EntityListener |
Listener for
Entity creation and death. |
| EntityProxyFactory |
This defines a factory for creating
Entity proxies. |
| EntityTypeListener |
Listener for
Entity type changes and death. |
| EntityVisitor |
EntityVisitor allows
Entity within an EntityContainer to be walked through one by
one recursively. |
| Class | Description |
|---|---|
| DefaultEntity |
A simple yet fully featured
Entity implementation.This entity can be marked as alive ( DefaultEntity.markAsAlive()) or dead (DefaultEntity.markAsDead()). |
| DefaultEntityContainer |
An DefaultEntityContainer is a thread-safe implementation of
EntityContainer. |
| DefaultEntityFactory |
A
EntityFactory implementation that creates/kills DefaultEntity. |
| DefaultEntityProxyFactory |
This is the default
EntityProxyFactory implementation for JALSE. |
| Entities |
A utility for
Entity related functionality (specifically around entity types).An Entity type allows entities to be used in an Object-Oriented way (get/set). |
| EntityEvent |
Entity change event for
EntityListener. |
| EntityTypeEvent |
Entity change event for
EntityTypeListener. |
| Enum | Description |
|---|---|
| EntityVisitor.EntityVisitResult |
Result to be returned when visiting an
Entity. |
Entity within
EntityContainer. An entity is a dynamic multi-typed object that may be
filtered and processed based on these types.EntityFactory,
Entities,
DefaultEntityContainer