| ILOG JRules User Guide > Integrating Application Data > Reference > Mapping Between XML Schema and Dynamic Classes > The Map Function |
The Map Function |
PREVIOUS NEXT |
The map function is used in the following section to design a dynamic type when its related schema type is known.
If T is a complex type, map(T) represents the dynamic class related to T.
If T is an atomic simple type, map(T) represents its mapped dynamic type following these rules:
MyT as:
Hence, map(MyT) = java.lang.String.
The following expression:
class C
{
[map(MyT)] myField;
}
stands for:
class C
{
java.lang.String myField;
}
| Copyright © 1987-2008 ILOG S.A. All rights reserved. Legal terms. Documentation homepage. | PREVIOUS NEXT |