Merge "Add sub-elements for "Variant" type" into qt-dev

gugelfrei
TreeHugger Robot 5 years ago committed by Android (Google) Code Review
commit 2322d0f769

@ -138,7 +138,12 @@ package media.codecs {
public class Variant {
ctor public Variant();
method public java.util.List<media.codecs.Alias> getAlias_optional();
method public java.util.List<media.codecs.Quirk> getAttribute_optional();
method public java.util.List<media.codecs.Feature> getFeature_optional();
method public java.util.List<media.codecs.Limit> getLimit_optional();
method public String getName();
method public java.util.List<media.codecs.Quirk> getQuirk_optional();
method public void setName(String);
}

@ -107,6 +107,13 @@
<xs:attribute name="value" type="xs:string"/>
</xs:complexType>
<xs:complexType name="Variant">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Quirk" type="Quirk"/>
<xs:element name="Attribute" type="Quirk"/>
<xs:element name="Alias" type="Alias"/>
<xs:element name="Limit" type="Limit"/>
<xs:element name="Feature" type="Feature"/>
</xs:choice>
<xs:attribute name="name" type="xs:string"/>
</xs:complexType>
<xs:complexType name="Setting">

Loading…
Cancel
Save