Class Summary |
BasicPBinder |
It defines the a basic PBinder which able to be also a PNamingContext. |
BasicPName |
This basic implementation of a PName delegates all calls to its methods
to the PNamingContext it references. |
BasicPNamingContext |
Default implementation for a PNamingContext with no coding support. |
BasicStringCoder |
The coding format supported by this coder is the following one:
- char is coded as is
(example 'A' <-> "A"
- byte, short, int, long are coded to hexadecimal fixed size strings
(example 395/short <-> "018B")
- string is coded with its encoded short length followed by the string
as is
(example "Hello world!" <-> "000CHello World!"
- date is coded with its encoded byte length followed by its string
representation
(example Date(837039928046) <-> "1407/10/96 4:5 PM, PDT" |
CTHelper |
This class is a helper which permits to convert PType code to a pname coding
type. |