error .dtd file in eclipse rcp galileo
When I want to validate my .dtd file using Eclipse RCP (galileo), it returns the following error:
A '(' character or an element type is required in the declaration of element type "L"
I think the problem is related to the definition of my elements in my .dtd file. Here it is:
<!ELEMENT experiment (L,T,P,I,expl_vars,resp_vars)>
<!ATTLIST experiment exp_id CDATA "">
<!ELEMENT L (#CDATA)>
<!ELEMENT T (#CDATA)>
<!ELEMENT P (#CDATA)>
<!ELEMENT I (#CDATA)>
<!ELEMENT expl_vars (variable+)>
<!ELEMENT resp_vars (variable+)>
<!ELEMENT variable (flow_rate)>
<!ATTLIST variable var_id CDATA "">
<!ELEMENT flow_rate (#CDATA)>
Could somebody point out where my mistake is situated? Or is this error perhaps a bug in Eclipse RCP (which I heavily doubt)?
thanks in advance