Using the Context Manager API

This section provides reference documentation on the Context Manager API, which is provided by the PTCXM_TEMPLATE_PAGELET application package. The classes, methods, and properties in this package are used to provide a supporting structure for template pagelets.

The Context Manager API classes are application classes (not a built-in class, like Rowset, Field, Record, and so on). Therefore, before you can use these classes in your implementation, you must import these classes into your program.

An import statement either names a particular application class or imports all the classes in a package.

Using the asterisks after the package name makes all the application classes directly contained in the named package available. Application classes contained in subpackages of the named package are not made available.

For the Context Manager API classes, since there are no subpackages, use an import statement similar to the following:

import PTCXM_TEMPLATE_PAGELET:*;