DataTable [message #897153] |
Sun, 22 July 2012 13:17  |
Eclipse User |
|
|
|
Mac OSX 10.6.8
Eclipse Jumo
EGL 0.8.0
DataTable Part
Is a DataTable allowed in EDT? Do I need to make some changes?
I am trying to build a table I can use to look up values from a dedicated service program with a string/char input. I believe I was able to do this in RBD.
The following code tells me that it cannot resolve contents (with or without the BasicTable stereotype).
package common;
DataTable RoastYieldFactors
fieldOne int;
fieldTwo int;
{contents = [
[11,22],
[44, 68]
]
}
End // End part
This code cannot resolve contents and will not allow the char definition.
package common;
DataTable RoastYieldFactors
fieldOne char(2);
fieldTwo int;
{contents = [
["AA",22],
["BB", 68]
]
}
End // End part
|
|
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.07423 seconds