blob: cf7bafbe3ba6a9a04fa744ce70fff92436f30527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* The implementations of Items, and their core functionality.
*
* <p>The CORBA IDLs generate the Item and Agent interfaces and their support
* classes in this package. In the kernel source tree, the classes
* {@link TraceableEntity} and {@link ItemImplementation} provides the
* implementing object for the Item on the server side, while the Locator class,
* plus the {@link CorbaServer} handle instantiation and caching of Items (and
* Agents) on the server.
*
* <p>The corresponding implementation for Agents is located in the agent
* sub-package.
*
* <p>Also in this package is the {@link C2KLocalObject} interface, which is
* implemented by all objects that may be stored in the CRISTAL persistency
* mechanism.
*/
package com.c2kernel.entity;
|