Added Linear media, like flash, ram, rom, cartridge, etc
This commit is contained in:
59
cicm.xml
59
cicm.xml
@@ -259,4 +259,63 @@
|
||||
<Timestamp>2001-12-31T12:00:00</Timestamp>
|
||||
</Recording>
|
||||
</Advertisement>
|
||||
<LinearMedia>
|
||||
<Image format="" offset="0">Image</Image>
|
||||
<Size>0</Size>
|
||||
<ImageChecksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</ImageChecksums>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
<Title>Title</Title>
|
||||
<Sequence>0</Sequence>
|
||||
<ImageInterleave>0</ImageInterleave>
|
||||
<Interleave>0</Interleave>
|
||||
<Manufacturer>Manufacturer</Manufacturer>
|
||||
<Model>Model</Model>
|
||||
<Package>Package</Package>
|
||||
<Interface>Interface</Interface>
|
||||
<Dimensions>
|
||||
<Thickness>0.0</Thickness>
|
||||
</Dimensions>
|
||||
<Scan>
|
||||
<MediaScanElement>up</MediaScanElement>
|
||||
<Scan>
|
||||
<File format="">File</File>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</Scan>
|
||||
</Scan>
|
||||
<DumpHardwareArray>
|
||||
<DumpHardware>
|
||||
<Manufacturer>Manufacturer</Manufacturer>
|
||||
<Model>Model</Model>
|
||||
<Revision>Revision</Revision>
|
||||
<Firmware>Firmware</Firmware>
|
||||
<Serial>Serial</Serial>
|
||||
<Extents>
|
||||
<Extent>
|
||||
<Start>0</Start>
|
||||
<End>0</End>
|
||||
</Extent>
|
||||
</Extents>
|
||||
<Software>
|
||||
<Name>Name</Name>
|
||||
<Version>Version</Version>
|
||||
<OperatingSystem>OperatingSystem</OperatingSystem>
|
||||
</Software>
|
||||
</DumpHardware>
|
||||
</DumpHardwareArray>
|
||||
<PCMCIA>
|
||||
<CIS>
|
||||
<Image>Image</Image>
|
||||
<Size>0</Size>
|
||||
<Checksums>
|
||||
<Checksum type="fletcher16">Checksum</Checksum>
|
||||
</Checksums>
|
||||
</CIS>
|
||||
</PCMCIA>
|
||||
</LinearMedia>
|
||||
</CICMMetadata>
|
||||
|
||||
442
dotnet/cicm.cs
442
dotnet/cicm.cs
@@ -72,6 +72,8 @@ namespace Schemas {
|
||||
|
||||
private AdvertisementType[] advertisementField;
|
||||
|
||||
private LinearMediaType[] linearMediaField;
|
||||
|
||||
/// <remarks>
|
||||
///Developer of the set
|
||||
///</remarks>
|
||||
@@ -150,8 +152,7 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///
|
||||
/// Kind of release: OEM, Bundle, Coverdisc, Retail, Demo
|
||||
/// Kind of release: OEM, Bundle, Coverdisc, Retail, Demo
|
||||
///
|
||||
///</remarks>
|
||||
public CICMMetadataTypeReleaseType ReleaseType {
|
||||
@@ -222,8 +223,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Manufacturer serial no., not to be confused with
|
||||
/// software registration serial number
|
||||
///Manufacturer serial no., not to be confused with software registration serial number
|
||||
///
|
||||
///</remarks>
|
||||
public string SerialNumber {
|
||||
get {
|
||||
@@ -318,8 +319,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///CPU architectures this set is designed to run on,
|
||||
/// if it includes software
|
||||
///CPU architectures this set is designed to run on, if it includes software
|
||||
///
|
||||
///</remarks>
|
||||
public ArchitecturesType Architectures {
|
||||
get {
|
||||
@@ -331,8 +332,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Required operating systems and versions this set
|
||||
/// runs on, if it includes software
|
||||
///Required operating systems and versions this set runs on, if it includes software
|
||||
///
|
||||
///</remarks>
|
||||
public RequiredOperatingSystemsType RequiredOperatingSystems {
|
||||
get {
|
||||
@@ -344,8 +345,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///User manual/guide, installation manual/guide and
|
||||
/// any applicable entity
|
||||
///User manual/guide, installation manual/guide and any applicable entity
|
||||
///
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlElementAttribute("UserManual")]
|
||||
public UserManualType[] UserManual {
|
||||
@@ -383,6 +384,19 @@ namespace Schemas {
|
||||
this.advertisementField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Linear media (flash, ram, rom, cartridges)
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlElementAttribute("LinearMedia")]
|
||||
public LinearMediaType[] LinearMedia {
|
||||
get {
|
||||
return this.linearMediaField;
|
||||
}
|
||||
set {
|
||||
this.linearMediaField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
@@ -729,8 +743,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Page size of this magazine, standard or in WxH
|
||||
/// milimeters
|
||||
///Page size of this magazine, standard or in WxH milimeters
|
||||
///
|
||||
///</remarks>
|
||||
public string PageSize {
|
||||
get {
|
||||
@@ -967,8 +981,7 @@ namespace Schemas {
|
||||
private LanguagesTypeLanguage languageField1;
|
||||
|
||||
/// <remarks>
|
||||
///
|
||||
/// Languages included in the set, ISO 3-letter code
|
||||
/// Languages included in the set, ISO 3-letter code
|
||||
///
|
||||
///</remarks>
|
||||
public LanguagesTypeLanguage Language {
|
||||
@@ -3142,8 +3155,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///User manual or user guide accompanying this set.
|
||||
/// Can be more than one.
|
||||
///User manual or user guide accompanying this set. Can be more than one.
|
||||
///
|
||||
///</remarks>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -3281,8 +3294,8 @@ namespace Schemas {
|
||||
private DumpHardwareArrayType dumpHardwareArrayField;
|
||||
|
||||
/// <remarks>
|
||||
///Image file, or image description file, plus
|
||||
/// format (cue, toc, etc, etc)
|
||||
///Image file, or image description file, plus format (cue, toc, etc, etc)
|
||||
///
|
||||
///</remarks>
|
||||
public ImageType Image {
|
||||
get {
|
||||
@@ -3433,8 +3446,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Offset between subchannel servo and data sectors
|
||||
/// servo, in bytes
|
||||
///Offset between subchannel servo and data sectors servo, in bytes
|
||||
///
|
||||
///</remarks>
|
||||
public int Offset {
|
||||
get {
|
||||
@@ -3531,8 +3544,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Physical Manufacturing Information (DVD and HD
|
||||
/// DVD)
|
||||
///Physical Manufacturing Information (DVD and HD DVD)
|
||||
///
|
||||
///</remarks>
|
||||
public DumpType PFI {
|
||||
get {
|
||||
@@ -3683,8 +3696,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///File containing track dump, and format, binary,
|
||||
/// yranib, or audio/video container
|
||||
///File containing track dump, and format, binary, yranib, or audio/video container
|
||||
///
|
||||
///</remarks>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
@@ -3819,8 +3832,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///On PTP layering, layer of disc described by this
|
||||
/// field, starting on 0
|
||||
///On PTP layering, layer of disc described by this field, starting on 0
|
||||
///
|
||||
///</remarks>
|
||||
public int Layer {
|
||||
get {
|
||||
@@ -4233,7 +4246,7 @@ namespace Schemas {
|
||||
|
||||
private CaseScanType caseScanField;
|
||||
|
||||
private DiscScanType discScanField;
|
||||
private MediaScanType scanField4;
|
||||
|
||||
/// <remarks>
|
||||
///Case scans
|
||||
@@ -4250,12 +4263,12 @@ namespace Schemas {
|
||||
/// <remarks>
|
||||
///Disc scans
|
||||
///</remarks>
|
||||
public DiscScanType DiscScan {
|
||||
public MediaScanType Scan {
|
||||
get {
|
||||
return this.discScanField;
|
||||
return this.scanField4;
|
||||
}
|
||||
set {
|
||||
this.discScanField = value;
|
||||
this.scanField4 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4335,23 +4348,22 @@ namespace Schemas {
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class DiscScanType {
|
||||
public partial class MediaScanType {
|
||||
|
||||
private DiscScanTypeDiscScanElement discScanElementField;
|
||||
private MediaScanTypeMediaScanElement mediaScanElementField;
|
||||
|
||||
private ScanType scanField4;
|
||||
private ScanType scanField5;
|
||||
|
||||
/// <remarks>
|
||||
///
|
||||
/// Scanned element: up, down, label, data, etc
|
||||
/// Scanned element: up, down, label, data, etc
|
||||
///
|
||||
///</remarks>
|
||||
public DiscScanTypeDiscScanElement DiscScanElement {
|
||||
public MediaScanTypeMediaScanElement MediaScanElement {
|
||||
get {
|
||||
return this.discScanElementField;
|
||||
return this.mediaScanElementField;
|
||||
}
|
||||
set {
|
||||
this.discScanElementField = value;
|
||||
this.mediaScanElementField = value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4360,10 +4372,10 @@ namespace Schemas {
|
||||
///</remarks>
|
||||
public ScanType Scan {
|
||||
get {
|
||||
return this.scanField4;
|
||||
return this.scanField5;
|
||||
}
|
||||
set {
|
||||
this.scanField4 = value;
|
||||
this.scanField5 = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4371,7 +4383,7 @@ namespace Schemas {
|
||||
/// <remarks/>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
public enum DiscScanTypeDiscScanElement {
|
||||
public enum MediaScanTypeMediaScanElement {
|
||||
|
||||
/// <remarks/>
|
||||
up,
|
||||
@@ -4631,8 +4643,8 @@ namespace Schemas {
|
||||
private PartitionType[] fileSystemInformationField;
|
||||
|
||||
/// <remarks>
|
||||
///File containing track dump, and format, binary,
|
||||
/// yranib, or audio/video container
|
||||
///File containing track dump, and format, binary, yranib, or audio/video container
|
||||
///
|
||||
///</remarks>
|
||||
public ImageType Image {
|
||||
get {
|
||||
@@ -4717,8 +4729,7 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///
|
||||
/// Track type: audio, mode0, mode1, mode2
|
||||
/// Track type: audio, mode0, mode1, mode2
|
||||
///
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlElementAttribute("TrackType")]
|
||||
@@ -4732,8 +4743,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Bytes per sector: 2048, 2352, 2448, etc, etc (as
|
||||
/// stored in image, not in physical format)
|
||||
///Bytes per sector: 2048, 2352, 2448, etc, etc (as stored in image, not in physical format)
|
||||
///
|
||||
///</remarks>
|
||||
public int BytesPerSector {
|
||||
get {
|
||||
@@ -4882,8 +4893,8 @@ namespace Schemas {
|
||||
private ChecksumType[] checksumsField6;
|
||||
|
||||
/// <remarks>
|
||||
///File containing track's subchannel dump and
|
||||
/// format, packed, rw_raw
|
||||
///File containing track's subchannel dump and format, packed, rw_raw
|
||||
///
|
||||
///</remarks>
|
||||
public ImageType Image {
|
||||
get {
|
||||
@@ -5002,8 +5013,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Partition description if supported by partition
|
||||
/// scheme
|
||||
///Partition description if supported by partition scheme
|
||||
///
|
||||
///</remarks>
|
||||
public string Description {
|
||||
get {
|
||||
@@ -5625,8 +5636,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Operating system name and version where the
|
||||
/// software was run
|
||||
///Operating system name and version where the software was run
|
||||
///
|
||||
///</remarks>
|
||||
public string OperatingSystem {
|
||||
get {
|
||||
@@ -5832,8 +5843,7 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///If advertisement has been capture from a
|
||||
/// television/radio broadcast, here is the capture information
|
||||
///If advertisement has been capture from a television/radio broadcast, here is the capture information
|
||||
///
|
||||
///</remarks>
|
||||
public RecordingType Recording {
|
||||
@@ -5933,8 +5943,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Mean bitrate, or constant bitrate, in bits per
|
||||
/// second
|
||||
///Mean bitrate, or constant bitrate, in bits per second
|
||||
///
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlAttributeAttribute()]
|
||||
public long MeanBitrate {
|
||||
@@ -6033,8 +6043,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Mean bitrate, or constant bitrate, in bits per
|
||||
/// second
|
||||
///Mean bitrate, or constant bitrate, in bits per second
|
||||
///
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlAttributeAttribute()]
|
||||
public long MeanBitrate {
|
||||
@@ -6144,8 +6154,8 @@ namespace Schemas {
|
||||
private CoordinatesType coordinatesField;
|
||||
|
||||
/// <remarks>
|
||||
///Name of the television channel this recording was
|
||||
/// broadcasted, if applicable
|
||||
///Name of the television channel this recording was broadcasted, if applicable
|
||||
///
|
||||
///</remarks>
|
||||
public string Broadcaster {
|
||||
get {
|
||||
@@ -6157,8 +6167,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Platform that broadcasted the television channel,
|
||||
/// if applicable
|
||||
///Platform that broadcasted the television channel, if applicable
|
||||
///
|
||||
///</remarks>
|
||||
public string BroadcastPlatform {
|
||||
get {
|
||||
@@ -6170,8 +6180,7 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///
|
||||
/// Format of the source of this recording
|
||||
/// Format of the source of this recording
|
||||
///
|
||||
///</remarks>
|
||||
public RecordingTypeSourceFormat SourceFormat {
|
||||
@@ -6196,8 +6205,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Software used to capture, process, convert, the
|
||||
/// recording
|
||||
///Software used to capture, process, convert, the recording
|
||||
///
|
||||
///</remarks>
|
||||
[System.Xml.Serialization.XmlElementAttribute("Software")]
|
||||
public SoftwareType[] Software {
|
||||
@@ -6210,8 +6219,8 @@ namespace Schemas {
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Approximate coordinates where the recording was
|
||||
/// done
|
||||
///Approximate coordinates where the recording was done
|
||||
///
|
||||
///</remarks>
|
||||
public CoordinatesType Coordinates {
|
||||
get {
|
||||
@@ -6522,4 +6531,299 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Describes a dump of a linear media, that is, a media that is read byte-by-byte like for example, a ROM chip, a game cartridge, a PCMCIA SRAM card, etc...
|
||||
///</remarks>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class LinearMediaType {
|
||||
|
||||
private ImageType imageField5;
|
||||
|
||||
private long sizeField5;
|
||||
|
||||
private ChecksumType[] imageChecksumsField;
|
||||
|
||||
private ChecksumType[] checksumsField8;
|
||||
|
||||
private string titleField;
|
||||
|
||||
private int sequenceField3;
|
||||
|
||||
private bool sequenceSpecifiedField;
|
||||
|
||||
private int imageInterleaveField;
|
||||
|
||||
private bool imageInterleaveSpecifiedField;
|
||||
|
||||
private int interleaveField;
|
||||
|
||||
private bool interleaveSpecifiedField;
|
||||
|
||||
private string manufacturerField3;
|
||||
|
||||
private string modelField2;
|
||||
|
||||
private string packageField;
|
||||
|
||||
private string interfaceField;
|
||||
|
||||
private DimensionsType dimensionsField1;
|
||||
|
||||
private MediaScanType scanField6;
|
||||
|
||||
private DumpHardwareArrayType dumpHardwareArrayField1;
|
||||
|
||||
private PCMCIAType pCMCIAField;
|
||||
|
||||
/// <remarks>
|
||||
///Image file, or image description file, plus format (cue, toc, etc, etc)
|
||||
///</remarks>
|
||||
public ImageType Image {
|
||||
get {
|
||||
return this.imageField5;
|
||||
}
|
||||
set {
|
||||
this.imageField5 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Image file size
|
||||
///</remarks>
|
||||
public long Size {
|
||||
get {
|
||||
return this.sizeField5;
|
||||
}
|
||||
set {
|
||||
this.sizeField5 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Checksum", IsNullable=false)]
|
||||
public ChecksumType[] ImageChecksums {
|
||||
get {
|
||||
return this.imageChecksumsField;
|
||||
}
|
||||
set {
|
||||
this.imageChecksumsField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlArrayItem(ElementName="Checksum", IsNullable=false)]
|
||||
public ChecksumType[] Checksums {
|
||||
get {
|
||||
return this.checksumsField8;
|
||||
}
|
||||
set {
|
||||
this.checksumsField8 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Title as it is labeled on media
|
||||
///</remarks>
|
||||
public string Title {
|
||||
get {
|
||||
return this.titleField;
|
||||
}
|
||||
set {
|
||||
this.titleField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Sequence of media
|
||||
///</remarks>
|
||||
public int Sequence {
|
||||
get {
|
||||
return this.sequenceField3;
|
||||
}
|
||||
set {
|
||||
this.sequenceField3 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlIgnore()]
|
||||
public virtual bool SequenceSpecified {
|
||||
get {
|
||||
return this.sequenceSpecifiedField;
|
||||
}
|
||||
set {
|
||||
this.sequenceSpecifiedField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///How many bytes must be read in image file for each byte in media
|
||||
///</remarks>
|
||||
public int ImageInterleave {
|
||||
get {
|
||||
return this.imageInterleaveField;
|
||||
}
|
||||
set {
|
||||
this.imageInterleaveField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlIgnore()]
|
||||
public virtual bool ImageInterleaveSpecified {
|
||||
get {
|
||||
return this.imageInterleaveSpecifiedField;
|
||||
}
|
||||
set {
|
||||
this.imageInterleaveSpecifiedField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///How many bytes must be skipped in image file for each byte in media
|
||||
///</remarks>
|
||||
public int Interleave {
|
||||
get {
|
||||
return this.interleaveField;
|
||||
}
|
||||
set {
|
||||
this.interleaveField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
[System.Xml.Serialization.XmlIgnore()]
|
||||
public virtual bool InterleaveSpecified {
|
||||
get {
|
||||
return this.interleaveSpecifiedField;
|
||||
}
|
||||
set {
|
||||
this.interleaveSpecifiedField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Media manufacturer
|
||||
///</remarks>
|
||||
public string Manufacturer {
|
||||
get {
|
||||
return this.manufacturerField3;
|
||||
}
|
||||
set {
|
||||
this.manufacturerField3 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Media model
|
||||
///</remarks>
|
||||
public string Model {
|
||||
get {
|
||||
return this.modelField2;
|
||||
}
|
||||
set {
|
||||
this.modelField2 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Media packaging (DIP, PCMCIA, Cartridge, etc)
|
||||
///</remarks>
|
||||
public string Package {
|
||||
get {
|
||||
return this.packageField;
|
||||
}
|
||||
set {
|
||||
this.packageField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Media interface
|
||||
///</remarks>
|
||||
public string Interface {
|
||||
get {
|
||||
return this.interfaceField;
|
||||
}
|
||||
set {
|
||||
this.interfaceField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Dimensions of media
|
||||
///</remarks>
|
||||
public DimensionsType Dimensions {
|
||||
get {
|
||||
return this.dimensionsField1;
|
||||
}
|
||||
set {
|
||||
this.dimensionsField1 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Scan of media
|
||||
///</remarks>
|
||||
public MediaScanType Scan {
|
||||
get {
|
||||
return this.scanField6;
|
||||
}
|
||||
set {
|
||||
this.scanField6 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Array of hardware used to dump media
|
||||
///</remarks>
|
||||
public DumpHardwareArrayType DumpHardwareArray {
|
||||
get {
|
||||
return this.dumpHardwareArrayField1;
|
||||
}
|
||||
set {
|
||||
this.dumpHardwareArrayField1 = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Present if media is a PCMCIA Linear Flash or SRAM card, to contain PCMCIA specific information
|
||||
///</remarks>
|
||||
public PCMCIAType PCMCIA {
|
||||
get {
|
||||
return this.pCMCIAField;
|
||||
}
|
||||
set {
|
||||
this.pCMCIAField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks>
|
||||
///Contains PCMCIA card information
|
||||
///</remarks>
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020")]
|
||||
[System.SerializableAttribute()]
|
||||
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
||||
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
||||
public partial class PCMCIAType {
|
||||
|
||||
private DumpType cISField;
|
||||
|
||||
/// <remarks>
|
||||
///Contains the PCMCIA Card Information Structure dump.
|
||||
///</remarks>
|
||||
public DumpType CIS {
|
||||
get {
|
||||
return this.cISField;
|
||||
}
|
||||
set {
|
||||
this.cISField = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
442
dotnet/cicm.vb
442
dotnet/cicm.vb
@@ -75,6 +75,8 @@ Namespace Schemas
|
||||
|
||||
Private advertisementField As AdvertisementType()
|
||||
|
||||
Private linearMediaField As LinearMediaType()
|
||||
|
||||
'''<remarks>
|
||||
'''Developer of the set
|
||||
'''</remarks>
|
||||
@@ -153,8 +155,7 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''
|
||||
''' Kind of release: OEM, Bundle, Coverdisc, Retail, Demo
|
||||
''' Kind of release: OEM, Bundle, Coverdisc, Retail, Demo
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property ReleaseType() As CICMMetadataTypeReleaseType
|
||||
@@ -225,8 +226,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Manufacturer serial no., not to be confused with
|
||||
''' software registration serial number
|
||||
'''Manufacturer serial no., not to be confused with software registration serial number
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property SerialNumber() As String
|
||||
Get
|
||||
@@ -321,8 +322,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''CPU architectures this set is designed to run on,
|
||||
''' if it includes software
|
||||
'''CPU architectures this set is designed to run on, if it includes software
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Architectures() As ArchitecturesType
|
||||
Get
|
||||
@@ -334,8 +335,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Required operating systems and versions this set
|
||||
''' runs on, if it includes software
|
||||
'''Required operating systems and versions this set runs on, if it includes software
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property RequiredOperatingSystems() As RequiredOperatingSystemsType
|
||||
Get
|
||||
@@ -347,8 +348,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''User manual/guide, installation manual/guide and
|
||||
''' any applicable entity
|
||||
'''User manual/guide, installation manual/guide and any applicable entity
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlElementAttribute("UserManual")> _
|
||||
Public Property UserManual() As UserManualType()
|
||||
@@ -386,6 +387,19 @@ Namespace Schemas
|
||||
Me.advertisementField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Linear media (flash, ram, rom, cartridges)
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlElementAttribute("LinearMedia")> _
|
||||
Public Property LinearMedia() As LinearMediaType()
|
||||
Get
|
||||
Return Me.linearMediaField
|
||||
End Get
|
||||
Set
|
||||
Me.linearMediaField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks/>
|
||||
@@ -732,8 +746,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Page size of this magazine, standard or in WxH
|
||||
''' milimeters
|
||||
'''Page size of this magazine, standard or in WxH milimeters
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property PageSize() As String
|
||||
Get
|
||||
@@ -970,8 +984,7 @@ Namespace Schemas
|
||||
Private languageField1 As LanguagesTypeLanguage
|
||||
|
||||
'''<remarks>
|
||||
'''
|
||||
''' Languages included in the set, ISO 3-letter code
|
||||
''' Languages included in the set, ISO 3-letter code
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Language() As LanguagesTypeLanguage
|
||||
@@ -3145,8 +3158,8 @@ Namespace Schemas
|
||||
End Class
|
||||
|
||||
'''<remarks>
|
||||
'''User manual or user guide accompanying this set.
|
||||
''' Can be more than one.
|
||||
'''User manual or user guide accompanying this set. Can be more than one.
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
@@ -3284,8 +3297,8 @@ Namespace Schemas
|
||||
Private dumpHardwareArrayField As DumpHardwareArrayType
|
||||
|
||||
'''<remarks>
|
||||
'''Image file, or image description file, plus
|
||||
''' format (cue, toc, etc, etc)
|
||||
'''Image file, or image description file, plus format (cue, toc, etc, etc)
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Image() As ImageType
|
||||
Get
|
||||
@@ -3436,8 +3449,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Offset between subchannel servo and data sectors
|
||||
''' servo, in bytes
|
||||
'''Offset between subchannel servo and data sectors servo, in bytes
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Offset() As Integer
|
||||
Get
|
||||
@@ -3534,8 +3547,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Physical Manufacturing Information (DVD and HD
|
||||
''' DVD)
|
||||
'''Physical Manufacturing Information (DVD and HD DVD)
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property PFI() As DumpType
|
||||
Get
|
||||
@@ -3686,8 +3699,8 @@ Namespace Schemas
|
||||
End Class
|
||||
|
||||
'''<remarks>
|
||||
'''File containing track dump, and format, binary,
|
||||
''' yranib, or audio/video container
|
||||
'''File containing track dump, and format, binary, yranib, or audio/video container
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
@@ -3822,8 +3835,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''On PTP layering, layer of disc described by this
|
||||
''' field, starting on 0
|
||||
'''On PTP layering, layer of disc described by this field, starting on 0
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Layer() As Integer
|
||||
Get
|
||||
@@ -4236,7 +4249,7 @@ Namespace Schemas
|
||||
|
||||
Private caseScanField As CaseScanType
|
||||
|
||||
Private discScanField As DiscScanType
|
||||
Private scanField4 As MediaScanType
|
||||
|
||||
'''<remarks>
|
||||
'''Case scans
|
||||
@@ -4253,12 +4266,12 @@ Namespace Schemas
|
||||
'''<remarks>
|
||||
'''Disc scans
|
||||
'''</remarks>
|
||||
Public Property DiscScan() As DiscScanType
|
||||
Public Property Scan() As MediaScanType
|
||||
Get
|
||||
Return Me.discScanField
|
||||
Return Me.scanField4
|
||||
End Get
|
||||
Set
|
||||
Me.discScanField = Value
|
||||
Me.scanField4 = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -4338,23 +4351,22 @@ Namespace Schemas
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class DiscScanType
|
||||
Partial Public Class MediaScanType
|
||||
|
||||
Private discScanElementField As DiscScanTypeDiscScanElement
|
||||
Private mediaScanElementField As MediaScanTypeMediaScanElement
|
||||
|
||||
Private scanField4 As ScanType
|
||||
Private scanField5 As ScanType
|
||||
|
||||
'''<remarks>
|
||||
'''
|
||||
''' Scanned element: up, down, label, data, etc
|
||||
''' Scanned element: up, down, label, data, etc
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property DiscScanElement() As DiscScanTypeDiscScanElement
|
||||
Public Property MediaScanElement() As MediaScanTypeMediaScanElement
|
||||
Get
|
||||
Return Me.discScanElementField
|
||||
Return Me.mediaScanElementField
|
||||
End Get
|
||||
Set
|
||||
Me.discScanElementField = Value
|
||||
Me.mediaScanElementField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@@ -4363,10 +4375,10 @@ Namespace Schemas
|
||||
'''</remarks>
|
||||
Public Property Scan() As ScanType
|
||||
Get
|
||||
Return Me.scanField4
|
||||
Return Me.scanField5
|
||||
End Get
|
||||
Set
|
||||
Me.scanField4 = Value
|
||||
Me.scanField5 = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -4374,7 +4386,7 @@ Namespace Schemas
|
||||
'''<remarks/>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute()> _
|
||||
Public Enum DiscScanTypeDiscScanElement
|
||||
Public Enum MediaScanTypeMediaScanElement
|
||||
|
||||
'''<remarks/>
|
||||
up
|
||||
@@ -4634,8 +4646,8 @@ Namespace Schemas
|
||||
Private fileSystemInformationField As PartitionType()
|
||||
|
||||
'''<remarks>
|
||||
'''File containing track dump, and format, binary,
|
||||
''' yranib, or audio/video container
|
||||
'''File containing track dump, and format, binary, yranib, or audio/video container
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Image() As ImageType
|
||||
Get
|
||||
@@ -4720,8 +4732,7 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''
|
||||
''' Track type: audio, mode0, mode1, mode2
|
||||
''' Track type: audio, mode0, mode1, mode2
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlElementAttribute("TrackType")> _
|
||||
@@ -4735,8 +4746,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Bytes per sector: 2048, 2352, 2448, etc, etc (as
|
||||
''' stored in image, not in physical format)
|
||||
'''Bytes per sector: 2048, 2352, 2448, etc, etc (as stored in image, not in physical format)
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property BytesPerSector() As Integer
|
||||
Get
|
||||
@@ -4885,8 +4896,8 @@ Namespace Schemas
|
||||
Private checksumsField6 As ChecksumType()
|
||||
|
||||
'''<remarks>
|
||||
'''File containing track's subchannel dump and
|
||||
''' format, packed, rw_raw
|
||||
'''File containing track's subchannel dump and format, packed, rw_raw
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Image() As ImageType
|
||||
Get
|
||||
@@ -5005,8 +5016,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Partition description if supported by partition
|
||||
''' scheme
|
||||
'''Partition description if supported by partition scheme
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Description() As String
|
||||
Get
|
||||
@@ -5628,8 +5639,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Operating system name and version where the
|
||||
''' software was run
|
||||
'''Operating system name and version where the software was run
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property OperatingSystem() As String
|
||||
Get
|
||||
@@ -5835,8 +5846,7 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''If advertisement has been capture from a
|
||||
''' television/radio broadcast, here is the capture information
|
||||
'''If advertisement has been capture from a television/radio broadcast, here is the capture information
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Recording() As RecordingType
|
||||
@@ -5936,8 +5946,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Mean bitrate, or constant bitrate, in bits per
|
||||
''' second
|
||||
'''Mean bitrate, or constant bitrate, in bits per second
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlAttributeAttribute()> _
|
||||
Public Property MeanBitrate() As Long
|
||||
@@ -6036,8 +6046,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Mean bitrate, or constant bitrate, in bits per
|
||||
''' second
|
||||
'''Mean bitrate, or constant bitrate, in bits per second
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlAttributeAttribute()> _
|
||||
Public Property MeanBitrate() As Long
|
||||
@@ -6147,8 +6157,8 @@ Namespace Schemas
|
||||
Private coordinatesField As CoordinatesType
|
||||
|
||||
'''<remarks>
|
||||
'''Name of the television channel this recording was
|
||||
''' broadcasted, if applicable
|
||||
'''Name of the television channel this recording was broadcasted, if applicable
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Broadcaster() As String
|
||||
Get
|
||||
@@ -6160,8 +6170,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Platform that broadcasted the television channel,
|
||||
''' if applicable
|
||||
'''Platform that broadcasted the television channel, if applicable
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property BroadcastPlatform() As String
|
||||
Get
|
||||
@@ -6173,8 +6183,7 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''
|
||||
''' Format of the source of this recording
|
||||
''' Format of the source of this recording
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property SourceFormat() As RecordingTypeSourceFormat
|
||||
@@ -6199,8 +6208,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Software used to capture, process, convert, the
|
||||
''' recording
|
||||
'''Software used to capture, process, convert, the recording
|
||||
'''
|
||||
'''</remarks>
|
||||
<System.Xml.Serialization.XmlElementAttribute("Software")> _
|
||||
Public Property Software() As SoftwareType()
|
||||
@@ -6213,8 +6222,8 @@ Namespace Schemas
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Approximate coordinates where the recording was
|
||||
''' done
|
||||
'''Approximate coordinates where the recording was done
|
||||
'''
|
||||
'''</remarks>
|
||||
Public Property Coordinates() As CoordinatesType
|
||||
Get
|
||||
@@ -6525,4 +6534,299 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks>
|
||||
'''Describes a dump of a linear media, that is, a media that is read byte-by-byte like for example, a ROM chip, a game cartridge, a PCMCIA SRAM card, etc...
|
||||
'''</remarks>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class LinearMediaType
|
||||
|
||||
Private imageField5 As ImageType
|
||||
|
||||
Private sizeField5 As Long
|
||||
|
||||
Private imageChecksumsField As ChecksumType()
|
||||
|
||||
Private checksumsField8 As ChecksumType()
|
||||
|
||||
Private titleField As String
|
||||
|
||||
Private sequenceField3 As Integer
|
||||
|
||||
Private sequenceSpecifiedField As Boolean
|
||||
|
||||
Private imageInterleaveField As Integer
|
||||
|
||||
Private imageInterleaveSpecifiedField As Boolean
|
||||
|
||||
Private interleaveField As Integer
|
||||
|
||||
Private interleaveSpecifiedField As Boolean
|
||||
|
||||
Private manufacturerField3 As String
|
||||
|
||||
Private modelField2 As String
|
||||
|
||||
Private packageField As String
|
||||
|
||||
Private interfaceField As String
|
||||
|
||||
Private dimensionsField1 As DimensionsType
|
||||
|
||||
Private scanField6 As MediaScanType
|
||||
|
||||
Private dumpHardwareArrayField1 As DumpHardwareArrayType
|
||||
|
||||
Private pCMCIAField As PCMCIAType
|
||||
|
||||
'''<remarks>
|
||||
'''Image file, or image description file, plus format (cue, toc, etc, etc)
|
||||
'''</remarks>
|
||||
Public Property Image() As ImageType
|
||||
Get
|
||||
Return Me.imageField5
|
||||
End Get
|
||||
Set
|
||||
Me.imageField5 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Image file size
|
||||
'''</remarks>
|
||||
Public Property Size() As Long
|
||||
Get
|
||||
Return Me.sizeField5
|
||||
End Get
|
||||
Set
|
||||
Me.sizeField5 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Checksum", IsNullable:=false)> _
|
||||
Public Property ImageChecksums() As ChecksumType()
|
||||
Get
|
||||
Return Me.imageChecksumsField
|
||||
End Get
|
||||
Set
|
||||
Me.imageChecksumsField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlArrayItem(ElementName:="Checksum", IsNullable:=false)> _
|
||||
Public Property Checksums() As ChecksumType()
|
||||
Get
|
||||
Return Me.checksumsField8
|
||||
End Get
|
||||
Set
|
||||
Me.checksumsField8 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Title as it is labeled on media
|
||||
'''</remarks>
|
||||
Public Property Title() As String
|
||||
Get
|
||||
Return Me.titleField
|
||||
End Get
|
||||
Set
|
||||
Me.titleField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Sequence of media
|
||||
'''</remarks>
|
||||
Public Property Sequence() As Integer
|
||||
Get
|
||||
Return Me.sequenceField3
|
||||
End Get
|
||||
Set
|
||||
Me.sequenceField3 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlIgnore()> _
|
||||
Public Overridable Property SequenceSpecified() As Boolean
|
||||
Get
|
||||
Return Me.sequenceSpecifiedField
|
||||
End Get
|
||||
Set
|
||||
Me.sequenceSpecifiedField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''How many bytes must be read in image file for each byte in media
|
||||
'''</remarks>
|
||||
Public Property ImageInterleave() As Integer
|
||||
Get
|
||||
Return Me.imageInterleaveField
|
||||
End Get
|
||||
Set
|
||||
Me.imageInterleaveField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlIgnore()> _
|
||||
Public Overridable Property ImageInterleaveSpecified() As Boolean
|
||||
Get
|
||||
Return Me.imageInterleaveSpecifiedField
|
||||
End Get
|
||||
Set
|
||||
Me.imageInterleaveSpecifiedField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''How many bytes must be skipped in image file for each byte in media
|
||||
'''</remarks>
|
||||
Public Property Interleave() As Integer
|
||||
Get
|
||||
Return Me.interleaveField
|
||||
End Get
|
||||
Set
|
||||
Me.interleaveField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
<System.Xml.Serialization.XmlIgnore()> _
|
||||
Public Overridable Property InterleaveSpecified() As Boolean
|
||||
Get
|
||||
Return Me.interleaveSpecifiedField
|
||||
End Get
|
||||
Set
|
||||
Me.interleaveSpecifiedField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Media manufacturer
|
||||
'''</remarks>
|
||||
Public Property Manufacturer() As String
|
||||
Get
|
||||
Return Me.manufacturerField3
|
||||
End Get
|
||||
Set
|
||||
Me.manufacturerField3 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Media model
|
||||
'''</remarks>
|
||||
Public Property Model() As String
|
||||
Get
|
||||
Return Me.modelField2
|
||||
End Get
|
||||
Set
|
||||
Me.modelField2 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Media packaging (DIP, PCMCIA, Cartridge, etc)
|
||||
'''</remarks>
|
||||
Public Property Package() As String
|
||||
Get
|
||||
Return Me.packageField
|
||||
End Get
|
||||
Set
|
||||
Me.packageField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Media interface
|
||||
'''</remarks>
|
||||
Public Property Interface() As String
|
||||
Get
|
||||
Return Me.interfaceField
|
||||
End Get
|
||||
Set
|
||||
Me.interfaceField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Dimensions of media
|
||||
'''</remarks>
|
||||
Public Property Dimensions() As DimensionsType
|
||||
Get
|
||||
Return Me.dimensionsField1
|
||||
End Get
|
||||
Set
|
||||
Me.dimensionsField1 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Scan of media
|
||||
'''</remarks>
|
||||
Public Property Scan() As MediaScanType
|
||||
Get
|
||||
Return Me.scanField6
|
||||
End Get
|
||||
Set
|
||||
Me.scanField6 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Array of hardware used to dump media
|
||||
'''</remarks>
|
||||
Public Property DumpHardwareArray() As DumpHardwareArrayType
|
||||
Get
|
||||
Return Me.dumpHardwareArrayField1
|
||||
End Get
|
||||
Set
|
||||
Me.dumpHardwareArrayField1 = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks>
|
||||
'''Present if media is a PCMCIA Linear Flash or SRAM card, to contain PCMCIA specific information
|
||||
'''</remarks>
|
||||
Public Property PCMCIA() As PCMCIAType
|
||||
Get
|
||||
Return Me.pCMCIAField
|
||||
End Get
|
||||
Set
|
||||
Me.pCMCIAField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
|
||||
'''<remarks>
|
||||
'''Contains PCMCIA card information
|
||||
'''</remarks>
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17020"), _
|
||||
System.SerializableAttribute(), _
|
||||
System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.ComponentModel.DesignerCategoryAttribute("code")> _
|
||||
Partial Public Class PCMCIAType
|
||||
|
||||
Private cISField As DumpType
|
||||
|
||||
'''<remarks>
|
||||
'''Contains the PCMCIA Card Information Structure dump.
|
||||
'''</remarks>
|
||||
Public Property CIS() As DumpType
|
||||
Get
|
||||
Return Me.cISField
|
||||
End Get
|
||||
Set
|
||||
Me.cISField = Value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -62,6 +62,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <element name="UserManual" type="{}UserManualType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="OpticalDisc" type="{}OpticalDiscType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Advertisement" type="{}AdvertisementType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="LinearMedia" type="{}LinearMediaType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -94,7 +95,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
"requiredOperatingSystems",
|
||||
"userManual",
|
||||
"opticalDisc",
|
||||
"advertisement"
|
||||
"advertisement",
|
||||
"linearMedia"
|
||||
})
|
||||
public class CICMMetadataType {
|
||||
|
||||
@@ -145,6 +147,8 @@ public class CICMMetadataType {
|
||||
protected List<OpticalDiscType> opticalDisc;
|
||||
@XmlElement(name = "Advertisement")
|
||||
protected List<AdvertisementType> advertisement;
|
||||
@XmlElement(name = "LinearMedia")
|
||||
protected List<LinearMediaType> linearMedia;
|
||||
|
||||
/**
|
||||
* Gets the value of the developer property.
|
||||
@@ -743,4 +747,33 @@ public class CICMMetadataType {
|
||||
return this.advertisement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the linearMedia 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 linearMedia property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLinearMedia().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link LinearMediaType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<LinearMediaType> getLinearMedia() {
|
||||
if (linearMedia == null) {
|
||||
linearMedia = new ArrayList<LinearMediaType>();
|
||||
}
|
||||
return this.linearMedia;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* File containing track dump, and format, binary,
|
||||
* yranib, or audio/video container
|
||||
* File containing track dump, and format, binary, yranib, or audio/video container
|
||||
*
|
||||
*
|
||||
* <p>Java class for ImageType complex type.
|
||||
*
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -161,11 +161,11 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DiscScanType }
|
||||
* Create an instance of {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public DiscScanType createDiscScanType() {
|
||||
return new DiscScanType();
|
||||
public MediaScanType createMediaScanType() {
|
||||
return new MediaScanType();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -184,6 +184,14 @@ public class ObjectFactory {
|
||||
return new RecordingType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link LinearMediaType }
|
||||
*
|
||||
*/
|
||||
public LinearMediaType createLinearMediaType() {
|
||||
return new LinearMediaType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RequiredOperatingSystemType }
|
||||
*
|
||||
@@ -384,6 +392,14 @@ public class ObjectFactory {
|
||||
return new XboxSecuritySectorsType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PCMCIAType }
|
||||
*
|
||||
*/
|
||||
public PCMCIAType createPCMCIAType() {
|
||||
return new PCMCIAType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ScansType }
|
||||
*
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CaseScan" type="{}CaseScanType" minOccurs="0"/>
|
||||
* <element name="DiscScan" type="{}DiscScanType" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}MediaScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -37,14 +37,14 @@ import javax.xml.bind.annotation.XmlType;
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ScansType", propOrder = {
|
||||
"caseScan",
|
||||
"discScan"
|
||||
"scan"
|
||||
})
|
||||
public class ScansType {
|
||||
|
||||
@XmlElement(name = "CaseScan")
|
||||
protected CaseScanType caseScan;
|
||||
@XmlElement(name = "DiscScan")
|
||||
protected DiscScanType discScan;
|
||||
@XmlElement(name = "Scan")
|
||||
protected MediaScanType scan;
|
||||
|
||||
/**
|
||||
* Gets the value of the caseScan property.
|
||||
@@ -71,27 +71,27 @@ public class ScansType {
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the discScan property.
|
||||
* Gets the value of the scan property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DiscScanType }
|
||||
* {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public DiscScanType getDiscScan() {
|
||||
return discScan;
|
||||
public MediaScanType getScan() {
|
||||
return scan;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the discScan property.
|
||||
* Sets the value of the scan property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DiscScanType }
|
||||
* {@link MediaScanType }
|
||||
*
|
||||
*/
|
||||
public void setDiscScan(DiscScanType value) {
|
||||
this.discScan = value;
|
||||
public void setScan(MediaScanType value) {
|
||||
this.scan = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
@@ -15,8 +15,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* User manual or user guide accompanying this set.
|
||||
* Can be more than one.
|
||||
* User manual or user guide accompanying this set. Can be more than one.
|
||||
*
|
||||
*
|
||||
* <p>Java class for UserManualType complex type.
|
||||
*
|
||||
|
||||
@@ -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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 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.07 at 05:27:06 AM WET
|
||||
// Generated on: 2015.11.09 at 03:41:35 AM WET
|
||||
//
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user