Talk:Eclipse ExDT VDT plugins
Means tag, btw:
<param .......>
<archinclude name="ARCH1">
<archinclude name="ARCH2">
<archinclude name="ARCH3">
</param>
or attribute:
<param .......
archinclude name="ARCH1"
archinclude name="ARCH2"
archinclude name="ARCH3"
/>
?
The second variant will not work: the same attributes in tag are forbidden.
Yes - same attibutes with equals names are forbidden. IMHO, probably it will be better following syntax:
<typedef name = "ANYTYPE1">
<paramtype kind="enum" base="String">
<item label="LABEL1" value="VALUE1" />
<item label="LABEL2" value="VALUE2" />
<item label="LABEL3" value="VALUE3" />
<item label="LABEL4" value="VALUE4" />
<item label="LABEL5" value="VALUE5" />
<item label="LABEL6" value="VALUE6" />
</paramtype>
</typedef>
<parameter id = "ANYPARAM1"
label = "Label of ANYPARAM1"
type = "ANYTYPE1"
default = "VALUE2"
format = "None" />
<parameter id = "ANYPARAM2"
label = "Label of ANYPARAM2"
type = "ANYTYPE2"
default = "Auto"
format = "CommonParameter"
ANYPARAM1excl = "VALUE1,VALUE3" />
<parameter id = "ANYPARAM3"
label = "Label of ANYPARAM3"
type = "ANYTYPE3"
default = "Auto"
format = "CommonParameter"
ANYPARAM1incl = "VALUE1" />
<parameter id = "ANYPARAM4"
label = "Label of ANYPARAM4"
type = "ANYTYPE4"
default = "Auto"
format = "CommonParameter" />
Such logic, it will be possible more universal....... --Victor 10:14, 12 May 2006 (CDT)