1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

fix for [Bug 180455] [Build] Build properties extension point missing schema

This commit is contained in:
Mikhail Sennikovsky 2007-04-02 09:57:38 +00:00
parent b608f3ec6b
commit 7bb447f90a

View file

@ -11,7 +11,17 @@
</annotation>
<element name="extension">
<annotation>
<documentation>
The build properties extension point is used to specify the property types and their values to be used with the tool definitions. The primary use if the build properties for now is option anablement/adjustment expressions.
</documentation>
</annotation>
<complexType>
<sequence>
<element ref="propertyType" minOccurs="0" maxOccurs="unbounded"/>
<element ref="propertyValue" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
@ -39,6 +49,62 @@
</complexType>
</element>
<element name="propertyType">
<annotation>
<documentation>
specifies the property type
</documentation>
</annotation>
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
the property type id
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string" use="required">
<annotation>
<documentation>
translatable property type name
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<element name="propertyValue">
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
property value id
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string" use="required">
<annotation>
<documentation>
translatable property value name
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
<attribute name="property" type="string" use="required">
<annotation>
<documentation>
the property type id this value belongs to
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="since"/>