Corrected some fields min. and max. values
This commit is contained in:
14
cicm.xsd
14
cicm.xsd
@@ -90,7 +90,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:element name="Architecture" minOccurs="1" maxOccurs="1">
|
||||
<xs:element name="Architecture" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="i86" />
|
||||
@@ -894,7 +894,7 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="KeywordsType">
|
||||
<xs:sequence>
|
||||
<xs:element type="xs:string" name="Keyword">
|
||||
<xs:element type="xs:string" name="Keyword" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Keywords</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1103,13 +1103,13 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="RequiredOperatingSystemType">
|
||||
<xs:sequence>
|
||||
<xs:element type="xs:string" name="Name">
|
||||
<xs:element type="xs:string" name="Name" minOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Minimal supported operating system
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:string" name="Version" />
|
||||
<xs:element type="xs:string" name="Version" minOccurs="1" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="CICMMetadataType">
|
||||
@@ -1517,7 +1517,7 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="LanguagesType">
|
||||
<xs:sequence>
|
||||
<xs:element name="Language">
|
||||
<xs:element name="Language" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:annotation>
|
||||
<xs:documentation> Languages included in the set, ISO 3-letter code
|
||||
</xs:documentation>
|
||||
@@ -2017,7 +2017,7 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="RequiredOperatingSystemsType">
|
||||
<xs:sequence>
|
||||
<xs:element type="RequiredOperatingSystemType" name="RequiredOperatingSystem" />
|
||||
<xs:element type="RequiredOperatingSystemType" name="RequiredOperatingSystem" minOccurs="1" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="SubChannelType">
|
||||
@@ -2361,7 +2361,7 @@
|
||||
<xs:documentation>Video tracks of advertisement</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="SubtitleTracksType" name="SubtitleTrack" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:element type="SubtitleTracksType" name="SubtitleTrack" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Subtitle tracks of advertisement
|
||||
</xs:documentation>
|
||||
|
||||
208
dotnet/cicm.cs
208
dotnet/cicm.cs
@@ -50,7 +50,7 @@ namespace Schemas {
|
||||
|
||||
private string serialNumberField;
|
||||
|
||||
private KeywordsType keywordsField;
|
||||
private string[] keywordsField;
|
||||
|
||||
private MagazineType[] magazineField;
|
||||
|
||||
@@ -60,13 +60,13 @@ namespace Schemas {
|
||||
|
||||
private string[] subcategoriesField;
|
||||
|
||||
private LanguagesType languagesField;
|
||||
private LanguagesTypeLanguage[] languagesField;
|
||||
|
||||
private string[] systemsField;
|
||||
|
||||
private ArchitecturesType architecturesField;
|
||||
private ArchitecturesTypeArchitecture[] architecturesField;
|
||||
|
||||
private RequiredOperatingSystemsType requiredOperatingSystemsField;
|
||||
private RequiredOperatingSystemType[] requiredOperatingSystemsField;
|
||||
|
||||
private UserManualType[] userManualField;
|
||||
|
||||
@@ -243,10 +243,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Keywords
|
||||
///</remarks>
|
||||
public KeywordsType Keywords {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Keyword", IsNullable=false)]
|
||||
public string[] Keywords {
|
||||
get {
|
||||
return this.keywordsField;
|
||||
}
|
||||
@@ -303,10 +302,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Languages this set comes in
|
||||
///</remarks>
|
||||
public LanguagesType Languages {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Languages {
|
||||
get {
|
||||
return this.languagesField;
|
||||
}
|
||||
@@ -326,11 +324,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///CPU architectures this set is designed to run on, if it includes software
|
||||
///
|
||||
///</remarks>
|
||||
public ArchitecturesType Architectures {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Architecture", IsNullable=false)]
|
||||
public ArchitecturesTypeArchitecture[] Architectures {
|
||||
get {
|
||||
return this.architecturesField;
|
||||
}
|
||||
@@ -339,11 +335,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Required operating systems and versions this set runs on, if it includes software
|
||||
///
|
||||
///</remarks>
|
||||
public RequiredOperatingSystemsType RequiredOperatingSystems {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="RequiredOperatingSystem", IsNullable=false)]
|
||||
public RequiredOperatingSystemType[] RequiredOperatingSystems {
|
||||
get {
|
||||
return this.requiredOperatingSystemsField;
|
||||
}
|
||||
@@ -601,28 +595,6 @@ namespace Schemas {
|
||||
patchcode,
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class KeywordsType {
|
||||
|
||||
private string keywordField;
|
||||
|
||||
/// <remarks>
|
||||
///Keywords
|
||||
///</remarks>
|
||||
public string Keyword {
|
||||
get {
|
||||
return this.keywordField;
|
||||
}
|
||||
set {
|
||||
this.keywordField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -646,7 +618,7 @@ namespace Schemas {
|
||||
|
||||
private bool numberSpecifiedField;
|
||||
|
||||
private LanguagesType languageField;
|
||||
private LanguagesTypeLanguage[] languageField;
|
||||
|
||||
private int pagesField;
|
||||
|
||||
@@ -752,11 +724,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Languages this magazine is written in
|
||||
///
|
||||
///</remarks>
|
||||
public LanguagesType Language {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Language {
|
||||
get {
|
||||
return this.languageField;
|
||||
}
|
||||
@@ -1018,29 +988,6 @@ namespace Schemas {
|
||||
spamsum,
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class LanguagesType {
|
||||
|
||||
private LanguagesTypeLanguage languageField1;
|
||||
|
||||
/// <remarks>
|
||||
/// Languages included in the set, ISO 3-letter code
|
||||
///
|
||||
///</remarks>
|
||||
public LanguagesTypeLanguage Language {
|
||||
get {
|
||||
return this.languageField1;
|
||||
}
|
||||
set {
|
||||
this.languageField1 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -2747,7 +2694,7 @@ namespace Schemas {
|
||||
|
||||
private string softwareVersionField2;
|
||||
|
||||
private LanguagesType languageField2;
|
||||
private LanguagesTypeLanguage[] languageField1;
|
||||
|
||||
/// <remarks>
|
||||
///Who did the OCR
|
||||
@@ -2785,16 +2732,14 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///OCR applied for which languages
|
||||
///
|
||||
///</remarks>
|
||||
public LanguagesType Language {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Language {
|
||||
get {
|
||||
return this.languageField2;
|
||||
return this.languageField1;
|
||||
}
|
||||
set {
|
||||
this.languageField2 = value;
|
||||
this.languageField1 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2820,7 +2765,7 @@ namespace Schemas {
|
||||
|
||||
private bool publicationDateSpecifiedField1;
|
||||
|
||||
private LanguagesType languageField3;
|
||||
private LanguagesTypeLanguage[] languageField2;
|
||||
|
||||
private int pagesField1;
|
||||
|
||||
@@ -2913,15 +2858,14 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Book language
|
||||
///</remarks>
|
||||
public LanguagesType Language {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Language {
|
||||
get {
|
||||
return this.languageField3;
|
||||
return this.languageField2;
|
||||
}
|
||||
set {
|
||||
this.languageField3 = value;
|
||||
this.languageField2 = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2974,29 +2918,6 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///CPU architectures this set is intended to be run on
|
||||
///
|
||||
///</remarks>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class ArchitecturesType {
|
||||
|
||||
private ArchitecturesTypeArchitecture architectureField;
|
||||
|
||||
/// <remarks/>
|
||||
public ArchitecturesTypeArchitecture Architecture {
|
||||
get {
|
||||
return this.architectureField;
|
||||
}
|
||||
set {
|
||||
this.architectureField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -3146,26 +3067,6 @@ namespace Schemas {
|
||||
power,
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class RequiredOperatingSystemsType {
|
||||
|
||||
private RequiredOperatingSystemType requiredOperatingSystemField;
|
||||
|
||||
/// <remarks/>
|
||||
public RequiredOperatingSystemType RequiredOperatingSystem {
|
||||
get {
|
||||
return this.requiredOperatingSystemField;
|
||||
}
|
||||
set {
|
||||
this.requiredOperatingSystemField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -3175,7 +3076,7 @@ namespace Schemas {
|
||||
|
||||
private string nameField3;
|
||||
|
||||
private string versionField1;
|
||||
private string[] versionField1;
|
||||
|
||||
/// <remarks>
|
||||
///Minimal supported operating system
|
||||
@@ -3191,7 +3092,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
public string Version {
|
||||
[System.Xml.Serialization.XmlElementAttribute("Version")]
|
||||
public string[] Version {
|
||||
get {
|
||||
return this.versionField1;
|
||||
}
|
||||
@@ -3211,7 +3113,7 @@ namespace Schemas {
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class UserManualType {
|
||||
|
||||
private LanguagesType languageField4;
|
||||
private LanguagesTypeLanguage[] languageField3;
|
||||
|
||||
private int pagesField2;
|
||||
|
||||
@@ -3219,15 +3121,14 @@ namespace Schemas {
|
||||
|
||||
private ScanType scanField2;
|
||||
|
||||
/// <remarks>
|
||||
///Language of the user manual
|
||||
///</remarks>
|
||||
public LanguagesType Language {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Language {
|
||||
get {
|
||||
return this.languageField4;
|
||||
return this.languageField3;
|
||||
}
|
||||
set {
|
||||
this.languageField4 = value;
|
||||
this.languageField3 = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5935,7 +5836,7 @@ namespace Schemas {
|
||||
|
||||
private long meanBitrateField;
|
||||
|
||||
private LanguagesType languagesField1;
|
||||
private LanguagesTypeLanguage[] languagesField1;
|
||||
|
||||
/// <remarks>
|
||||
///Track number in media container
|
||||
@@ -6016,10 +5917,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Track languages
|
||||
///</remarks>
|
||||
public LanguagesType Languages {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Languages {
|
||||
get {
|
||||
return this.languagesField1;
|
||||
}
|
||||
@@ -6048,7 +5948,7 @@ namespace Schemas {
|
||||
|
||||
private bool threeDField;
|
||||
|
||||
private LanguagesType languagesField2;
|
||||
private LanguagesTypeLanguage[] languagesField2;
|
||||
|
||||
/// <remarks>
|
||||
///Track number in media container
|
||||
@@ -6129,10 +6029,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Track languages
|
||||
///</remarks>
|
||||
public LanguagesType Languages {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Languages {
|
||||
get {
|
||||
return this.languagesField2;
|
||||
}
|
||||
@@ -6153,7 +6052,7 @@ namespace Schemas {
|
||||
|
||||
private string codecField2;
|
||||
|
||||
private LanguagesType languagesField3;
|
||||
private LanguagesTypeLanguage[] languagesField3;
|
||||
|
||||
/// <remarks>
|
||||
///Track number in media container
|
||||
@@ -6181,10 +6080,9 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Track languages
|
||||
///</remarks>
|
||||
public LanguagesType Languages {
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Language", IsNullable=false)]
|
||||
public LanguagesTypeLanguage[] Languages {
|
||||
get {
|
||||
return this.languagesField3;
|
||||
}
|
||||
|
||||
208
dotnet/cicm.vb
208
dotnet/cicm.vb
@@ -53,7 +53,7 @@ Namespace Schemas
|
||||
|
||||
Private serialNumberField As String
|
||||
|
||||
Private keywordsField As KeywordsType
|
||||
Private keywordsField As String()
|
||||
|
||||
Private magazineField As MagazineType()
|
||||
|
||||
@@ -63,13 +63,13 @@ Namespace Schemas
|
||||
|
||||
Private subcategoriesField As String()
|
||||
|
||||
Private languagesField As LanguagesType
|
||||
Private languagesField As LanguagesTypeLanguage()
|
||||
|
||||
Private systemsField As String()
|
||||
|
||||
Private architecturesField As ArchitecturesType
|
||||
Private architecturesField As ArchitecturesTypeArchitecture()
|
||||
|
||||
Private requiredOperatingSystemsField As RequiredOperatingSystemsType
|
||||
Private requiredOperatingSystemsField As RequiredOperatingSystemType()
|
||||
|
||||
Private userManualField As UserManualType()
|
||||
|
||||
@@ -246,10 +246,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Keywords
|
||||
'''</remarks>
|
||||
Public Property Keywords() As KeywordsType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Keyword", IsNullable:=false)> _
|
||||
Public Property Keywords() As String()
|
||||
Get
|
||||
Return Me.keywordsField
|
||||
End Get
|
||||
@@ -306,10 +305,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Languages this set comes in
|
||||
'''</remarks>
|
||||
Public Property Languages() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Languages() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languagesField
|
||||
End Get
|
||||
@@ -329,11 +327,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''CPU architectures this set is designed to run on, if it includes software
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Architectures() As ArchitecturesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Architecture", IsNullable:=false)> _
|
||||
Public Property Architectures() As ArchitecturesTypeArchitecture()
|
||||
Get
|
||||
Return Me.architecturesField
|
||||
End Get
|
||||
@@ -342,11 +338,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Required operating systems and versions this set runs on, if it includes software
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property RequiredOperatingSystems() As RequiredOperatingSystemsType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="RequiredOperatingSystem", IsNullable:=false)> _
|
||||
Public Property RequiredOperatingSystems() As RequiredOperatingSystemType()
|
||||
Get
|
||||
Return Me.requiredOperatingSystemsField
|
||||
End Get
|
||||
@@ -604,28 +598,6 @@ Namespace Schemas
|
||||
patchcode
|
||||
End Enum
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class KeywordsType
|
||||
|
||||
Private keywordField As String
|
||||
|
||||
'''<remarks>
|
||||
'''Keywords
|
||||
'''</remarks>
|
||||
Public Property Keyword() As String
|
||||
Get
|
||||
Return Me.keywordField
|
||||
End Get
|
||||
Set
|
||||
Me.keywordField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
@@ -649,7 +621,7 @@ Namespace Schemas
|
||||
|
||||
Private numberSpecifiedField As Boolean
|
||||
|
||||
Private languageField As LanguagesType
|
||||
Private languageField As LanguagesTypeLanguage()
|
||||
|
||||
Private pagesField As Integer
|
||||
|
||||
@@ -755,11 +727,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Languages this magazine is written in
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Language() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languageField
|
||||
End Get
|
||||
@@ -1021,29 +991,6 @@ Namespace Schemas
|
||||
spamsum
|
||||
End Enum
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class LanguagesType
|
||||
|
||||
Private languageField1 As LanguagesTypeLanguage
|
||||
|
||||
'''<remarks>
|
||||
''' Languages included in the set, ISO 3-letter code
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesTypeLanguage
|
||||
Get
|
||||
Return Me.languageField1
|
||||
End Get
|
||||
Set
|
||||
Me.languageField1 = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute()> _
|
||||
@@ -2750,7 +2697,7 @@ Namespace Schemas
|
||||
|
||||
Private softwareVersionField2 As String
|
||||
|
||||
Private languageField2 As LanguagesType
|
||||
Private languageField1 As LanguagesTypeLanguage()
|
||||
|
||||
'''<remarks>
|
||||
'''Who did the OCR
|
||||
@@ -2788,16 +2735,14 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''OCR applied for which languages
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Language() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languageField2
|
||||
Return Me.languageField1
|
||||
End Get
|
||||
Set
|
||||
Me.languageField2 = Value
|
||||
Me.languageField1 = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -2823,7 +2768,7 @@ Namespace Schemas
|
||||
|
||||
Private publicationDateSpecifiedField1 As Boolean
|
||||
|
||||
Private languageField3 As LanguagesType
|
||||
Private languageField2 As LanguagesTypeLanguage()
|
||||
|
||||
Private pagesField1 As Integer
|
||||
|
||||
@@ -2916,15 +2861,14 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Book language
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Language() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languageField3
|
||||
Return Me.languageField2
|
||||
End Get
|
||||
Set
|
||||
Me.languageField3 = Value
|
||||
Me.languageField2 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@@ -2977,29 +2921,6 @@ Namespace Schemas
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks>
|
||||
'''CPU architectures this set is intended to be run on
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class ArchitecturesType
|
||||
|
||||
Private architectureField As ArchitecturesTypeArchitecture
|
||||
|
||||
'''<remarks/>
|
||||
Public Property Architecture() As ArchitecturesTypeArchitecture
|
||||
Get
|
||||
Return Me.architectureField
|
||||
End Get
|
||||
Set
|
||||
Me.architectureField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute()> _
|
||||
@@ -3149,26 +3070,6 @@ Namespace Schemas
|
||||
power
|
||||
End Enum
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class RequiredOperatingSystemsType
|
||||
|
||||
Private requiredOperatingSystemField As RequiredOperatingSystemType
|
||||
|
||||
'''<remarks/>
|
||||
Public Property RequiredOperatingSystem() As RequiredOperatingSystemType
|
||||
Get
|
||||
Return Me.requiredOperatingSystemField
|
||||
End Get
|
||||
Set
|
||||
Me.requiredOperatingSystemField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
@@ -3178,7 +3079,7 @@ Namespace Schemas
|
||||
|
||||
Private nameField3 As String
|
||||
|
||||
Private versionField1 As String
|
||||
Private versionField1 As String()
|
||||
|
||||
'''<remarks>
|
||||
'''Minimal supported operating system
|
||||
@@ -3194,7 +3095,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
Public Property Version() As String
|
||||
<System.Xml.Serialization.XmlElementAttribute("Version")> _
|
||||
Public Property Version() As String()
|
||||
Get
|
||||
Return Me.versionField1
|
||||
End Get
|
||||
@@ -3214,7 +3116,7 @@ Namespace Schemas
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class UserManualType
|
||||
|
||||
Private languageField4 As LanguagesType
|
||||
Private languageField3 As LanguagesTypeLanguage()
|
||||
|
||||
Private pagesField2 As Integer
|
||||
|
||||
@@ -3222,15 +3124,14 @@ Namespace Schemas
|
||||
|
||||
Private scanField2 As ScanType
|
||||
|
||||
'''<remarks>
|
||||
'''Language of the user manual
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Language() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languageField4
|
||||
Return Me.languageField3
|
||||
End Get
|
||||
Set
|
||||
Me.languageField4 = Value
|
||||
Me.languageField3 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@@ -5938,7 +5839,7 @@ Namespace Schemas
|
||||
|
||||
Private meanBitrateField As Long
|
||||
|
||||
Private languagesField1 As LanguagesType
|
||||
Private languagesField1 As LanguagesTypeLanguage()
|
||||
|
||||
'''<remarks>
|
||||
'''Track number in media container
|
||||
@@ -6019,10 +5920,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Track languages
|
||||
'''</remarks>
|
||||
Public Property Languages() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Languages() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languagesField1
|
||||
End Get
|
||||
@@ -6051,7 +5951,7 @@ Namespace Schemas
|
||||
|
||||
Private threeDField As Boolean
|
||||
|
||||
Private languagesField2 As LanguagesType
|
||||
Private languagesField2 As LanguagesTypeLanguage()
|
||||
|
||||
'''<remarks>
|
||||
'''Track number in media container
|
||||
@@ -6132,10 +6032,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Track languages
|
||||
'''</remarks>
|
||||
Public Property Languages() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Languages() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languagesField2
|
||||
End Get
|
||||
@@ -6156,7 +6055,7 @@ Namespace Schemas
|
||||
|
||||
Private codecField2 As String
|
||||
|
||||
Private languagesField3 As LanguagesType
|
||||
Private languagesField3 As LanguagesTypeLanguage()
|
||||
|
||||
'''<remarks>
|
||||
'''Track number in media container
|
||||
@@ -6184,10 +6083,9 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Track languages
|
||||
'''</remarks>
|
||||
Public Property Languages() As LanguagesType
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Language", IsNullable:=false)> _
|
||||
Public Property Languages() As LanguagesTypeLanguage()
|
||||
Get
|
||||
Return Me.languagesField3
|
||||
End Get
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="SubtitleTrack" type="{}SubtitleTracksType" maxOccurs="unbounded"/>
|
||||
* <element name="SubtitleTrack" type="{}SubtitleTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Recording" type="{}RecordingType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -83,7 +83,7 @@ public class AdvertisementType {
|
||||
protected List<AudioTracksType> audioTrack;
|
||||
@XmlElement(name = "VideoTrack")
|
||||
protected List<VideoTracksType> videoTrack;
|
||||
@XmlElement(name = "SubtitleTrack", required = true)
|
||||
@XmlElement(name = "SubtitleTrack")
|
||||
protected List<SubtitleTracksType> subtitleTrack;
|
||||
@XmlElement(name = "Recording")
|
||||
protected RecordingType recording;
|
||||
|
||||
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Architecture">
|
||||
* <element name="Architecture" maxOccurs="unbounded">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="i86"/>
|
||||
@@ -93,30 +95,35 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class ArchitecturesType {
|
||||
|
||||
@XmlElement(name = "Architecture", required = true)
|
||||
protected String architecture;
|
||||
protected List<String> architecture;
|
||||
|
||||
/**
|
||||
* Gets the value of the architecture property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getArchitecture() {
|
||||
return architecture;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the architecture property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the architecture property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getArchitecture().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setArchitecture(String value) {
|
||||
this.architecture = value;
|
||||
public List<String> getArchitecture() {
|
||||
if (architecture == null) {
|
||||
architecture = new ArrayList<String>();
|
||||
}
|
||||
return this.architecture;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -24,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -40,30 +42,35 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class KeywordsType {
|
||||
|
||||
@XmlElement(name = "Keyword", required = true)
|
||||
protected String keyword;
|
||||
protected List<String> keyword;
|
||||
|
||||
/**
|
||||
* Gets the value of the keyword property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKeyword() {
|
||||
return keyword;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the keyword property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the keyword property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getKeyword().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKeyword(String value) {
|
||||
this.keyword = value;
|
||||
public List<String> getKeyword() {
|
||||
if (keyword == null) {
|
||||
keyword = new ArrayList<String>();
|
||||
}
|
||||
return this.keyword;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -24,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language">
|
||||
* <element name="Language" maxOccurs="unbounded">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aar"/>
|
||||
@@ -531,30 +533,35 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class LanguagesType {
|
||||
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected String language;
|
||||
protected List<String> language;
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the language property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLanguage().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(String value) {
|
||||
this.language = value;
|
||||
public List<String> getLanguage() {
|
||||
if (language == null) {
|
||||
language = new ArrayList<String>();
|
||||
}
|
||||
return this.language;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -25,7 +27,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -44,7 +46,7 @@ public class RequiredOperatingSystemType {
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "Version", required = true)
|
||||
protected String version;
|
||||
protected List<String> version;
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
@@ -73,25 +75,30 @@ public class RequiredOperatingSystemType {
|
||||
/**
|
||||
* Gets the value of the version property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the version property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the version property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVersion().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersion(String value) {
|
||||
this.version = value;
|
||||
public List<String> getVersion() {
|
||||
if (version == null) {
|
||||
version = new ArrayList<String>();
|
||||
}
|
||||
return this.version;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -24,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RequiredOperatingSystem" type="{}RequiredOperatingSystemType"/>
|
||||
* <element name="RequiredOperatingSystem" type="{}RequiredOperatingSystemType" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -40,30 +42,35 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class RequiredOperatingSystemsType {
|
||||
|
||||
@XmlElement(name = "RequiredOperatingSystem", required = true)
|
||||
protected RequiredOperatingSystemType requiredOperatingSystem;
|
||||
protected List<RequiredOperatingSystemType> requiredOperatingSystem;
|
||||
|
||||
/**
|
||||
* Gets the value of the requiredOperatingSystem property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public RequiredOperatingSystemType getRequiredOperatingSystem() {
|
||||
return requiredOperatingSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the requiredOperatingSystem property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the requiredOperatingSystem property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRequiredOperatingSystem().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RequiredOperatingSystemType }
|
||||
*
|
||||
*/
|
||||
public void setRequiredOperatingSystem(RequiredOperatingSystemType value) {
|
||||
this.requiredOperatingSystem = value;
|
||||
public List<RequiredOperatingSystemType> getRequiredOperatingSystem() {
|
||||
if (requiredOperatingSystem == null) {
|
||||
requiredOperatingSystem = new ArrayList<RequiredOperatingSystemType>();
|
||||
}
|
||||
return this.requiredOperatingSystem;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user