[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.modeling.gmt] OAW xpt and counters
|
Hello ... I am porting a code generator to OAW from XSLT ...
Is there a way i can store the number of times something meeting some
foreach condition ?
I kinda wanna do something like this below half baked pseudo code:
int count = 0;
«FOREACH //get some list ...
//satisfy some condition
count +=1;
«ENDFOREACH»
Reason being ... is that i need to create an array of objects:
objects * myarray = new objects()[/*num of special objects in model*/]
Cheers,
Jim