Update size of fields.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -85,7 +85,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.Sequence).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, uint>(r => r.Sequence).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Sequence"
|
||||
});
|
||||
@@ -93,7 +93,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.StartSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, ulong>(r => r.StartSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Start"
|
||||
});
|
||||
@@ -101,7 +101,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.EndSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, ulong>(r => r.EndSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "End"
|
||||
});
|
||||
@@ -229,7 +229,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -247,7 +247,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -265,7 +265,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -283,7 +283,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -301,7 +301,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -319,7 +319,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -337,7 +337,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -355,7 +355,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -373,7 +373,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -391,7 +391,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -405,7 +405,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<EVPDType, int>(r => r.page).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<EVPDType, byte>(r => r.page).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Page"
|
||||
});
|
||||
@@ -418,7 +418,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<EVPDType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<EVPDType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -439,7 +439,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -457,7 +457,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -476,7 +476,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LinearMediaType, long>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LinearMediaType, ulong>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Offset"
|
||||
});
|
||||
@@ -484,7 +484,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LinearMediaType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LinearMediaType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -506,7 +506,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ulong>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Offset"
|
||||
});
|
||||
@@ -514,7 +514,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -527,7 +527,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.Head).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ushort>(r => r.Head).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Head"
|
||||
});
|
||||
@@ -535,7 +535,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.Cylinder).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, uint>(r => r.Cylinder).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Cylinder"
|
||||
});
|
||||
@@ -543,7 +543,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.StartSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ulong>(r => r.StartSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Start"
|
||||
});
|
||||
@@ -551,7 +551,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.EndSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ulong>(r => r.EndSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "End"
|
||||
});
|
||||
@@ -559,7 +559,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, long>(r => r.Sectors).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, ulong>(r => r.Sectors).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Sectors"
|
||||
});
|
||||
@@ -567,7 +567,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BlockTrackType, int>(r => r.BytesPerSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BlockTrackType, uint>(r => r.BytesPerSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Bytes per sector"
|
||||
});
|
||||
@@ -989,9 +989,9 @@ namespace CICMMetadataEditor
|
||||
|
||||
partitionIter = new PartitionType
|
||||
{
|
||||
Sequence = (int)spPartitionSequence.Value,
|
||||
StartSector = int.Parse(txtPartitionStart.Text),
|
||||
EndSector = int.Parse(txtPartitionEnd.Text),
|
||||
Sequence = (uint)spPartitionSequence.Value,
|
||||
StartSector = ulong.Parse(txtPartitionStart.Text),
|
||||
EndSector = ulong.Parse(txtPartitionEnd.Text),
|
||||
Type = txtPartitionType.Text,
|
||||
Name = txtPartitionName.Text,
|
||||
Description = txtPartitionDescription.Text
|
||||
@@ -1463,10 +1463,10 @@ namespace CICMMetadataEditor
|
||||
if(!string.IsNullOrWhiteSpace(txtOffset.Text) && long.TryParse(txtOffset.Text, out ltmp))
|
||||
{
|
||||
Metadata.Image.offsetSpecified = true;
|
||||
Metadata.Image.offset = long.Parse(txtOffset.Text);
|
||||
Metadata.Image.offset = ulong.Parse(txtOffset.Text);
|
||||
}
|
||||
|
||||
Metadata.Size = long.Parse(txtSize.Text);
|
||||
Metadata.Size = ulong.Parse(txtSize.Text);
|
||||
Metadata.Checksums = checksums;
|
||||
Metadata.ContentChecksums = contentChks;
|
||||
|
||||
@@ -1475,19 +1475,19 @@ namespace CICMMetadataEditor
|
||||
Metadata.Sequence = new SequenceType
|
||||
{
|
||||
MediaTitle = txtMediaTitle.Text,
|
||||
MediaSequence = (int)spSequence.Value,
|
||||
TotalMedia = (int)spTotalMedia.Value
|
||||
MediaSequence = (uint)spSequence.Value,
|
||||
TotalMedia = (uint)spTotalMedia.Value
|
||||
};
|
||||
if(spSide.Value > 0)
|
||||
{
|
||||
Metadata.Sequence.SideSpecified = true;
|
||||
Metadata.Sequence.Side = (int)spSide.Value;
|
||||
Metadata.Sequence.Side = (byte)spSide.Value;
|
||||
}
|
||||
|
||||
if(spLayer.Value > 0)
|
||||
{
|
||||
Metadata.Sequence.LayerSpecified = true;
|
||||
Metadata.Sequence.Layer = (int)spLayer.Value;
|
||||
Metadata.Sequence.Layer = (byte)spLayer.Value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1497,9 +1497,9 @@ namespace CICMMetadataEditor
|
||||
if(!string.IsNullOrWhiteSpace(txtFirmware.Text)) Metadata.Firmware = txtFirmware.Text;
|
||||
if(!string.IsNullOrWhiteSpace(txtInterface.Text)) Metadata.Interface = txtInterface.Text;
|
||||
|
||||
Metadata.PhysicalBlockSize = (int)spPhysicalBlockSize.Value;
|
||||
Metadata.LogicalBlockSize = (int)spLogicalBlockSize.Value;
|
||||
Metadata.LogicalBlocks = long.Parse(txtBlocks.Text);
|
||||
Metadata.PhysicalBlockSize = (uint)spPhysicalBlockSize.Value;
|
||||
Metadata.LogicalBlockSize = (uint)spLogicalBlockSize.Value;
|
||||
Metadata.LogicalBlocks = ulong.Parse(txtBlocks.Text);
|
||||
Metadata.VariableBlockSize = variableBlockSize;
|
||||
Metadata.TapeInformation = tapeInformation;
|
||||
Metadata.Scans = scans;
|
||||
@@ -1588,9 +1588,9 @@ namespace CICMMetadataEditor
|
||||
Metadata.HeadsSpecified = true;
|
||||
Metadata.CylindersSpecified = true;
|
||||
Metadata.SectorsPerTrackSpecified = true;
|
||||
Metadata.Heads = (long)spHeads.Value;
|
||||
Metadata.Cylinders = (long)spCylinders.Value;
|
||||
Metadata.SectorsPerTrack = (long)spSectors.Value;
|
||||
Metadata.Heads = (ushort)spHeads.Value;
|
||||
Metadata.Cylinders = (uint)spCylinders.Value;
|
||||
Metadata.SectorsPerTrack = (ulong)spSectors.Value;
|
||||
}
|
||||
|
||||
if(lstTracks.Count > 0) Metadata.Track = lstTracks.ToArray();
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
<?xml version="1.0" encoding="UTF-8"?><!--
|
||||
//
|
||||
// Author:
|
||||
// Natalia Portillo claunia@claunia.com
|
||||
@@ -31,105 +30,108 @@
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
-->
|
||||
<Form xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="533" Width="909" Resizable="True" Title="Editing metadata...">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
||||
<TabControl>
|
||||
<TabPage Text="General" ID="tabGeneral">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Developer</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtDeveloper" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Publisher</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPublisher" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Author</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtAuthor" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Performer</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPerformer" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Name</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtName" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Version</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtVersion" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal" ID="stkReleaseType">
|
||||
<CheckBox ID="chkKnownReleaseType" ThreeState="False" CheckedChanged="OnChkKnownReleaseTypeToggled">Known release type?</CheckBox>
|
||||
<!-- EnumDropDown<ReleaseType> goes here -->
|
||||
</StackLayout>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Release date</Label>
|
||||
<DateTimePicker ID="cldReleaseDate" Enabled="False" />
|
||||
<CheckBox ID="chkReleaseDate" ThreeState="False" CheckedChanged="OnChkReleaseDateToggled" Checked="True">Unknown or unreleased</CheckBox>
|
||||
</StackLayout>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Part number</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPartNumber" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Serial number</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtSerialNumber" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<Form xmlns="http://schema.picoe.ca/eto.forms" Height="533" Width="909" Resizable="True" Title="Editing metadata...">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
||||
<TabControl>
|
||||
<TabPage Text="General" ID="tabGeneral">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Developer</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtDeveloper"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Publisher</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPublisher"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Author</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtAuthor"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Performer</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPerformer"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Name</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtName"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Version</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtVersion"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal" ID="stkReleaseType">
|
||||
<CheckBox ID="chkKnownReleaseType" ThreeState="False"
|
||||
CheckedChanged="OnChkKnownReleaseTypeToggled">Known release type?
|
||||
</CheckBox>
|
||||
<!-- EnumDropDown<ReleaseType> goes here -->
|
||||
</StackLayout>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Release date</Label>
|
||||
<DateTimePicker ID="cldReleaseDate" Enabled="False"/>
|
||||
<CheckBox ID="chkReleaseDate" ThreeState="False" CheckedChanged="OnChkReleaseDateToggled"
|
||||
Checked="True">Unknown or unreleased
|
||||
</CheckBox>
|
||||
</StackLayout>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Part number</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtPartNumber"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Serial number</Label>
|
||||
<StackLayoutItem Expand="True">
|
||||
<TextBox ID="txtSerialNumber"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Required operating systems" ID="tabTargetOs">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New operating system:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewOsName" />
|
||||
<TextBox ID="txtNewOsName"/>
|
||||
</StackLayoutItem>
|
||||
<Label>version:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewOsVersion" />
|
||||
<TextBox ID="txtNewOsVersion"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddNewOs" Click="OnBtnAddNewOsClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeOses">
|
||||
</GridView>
|
||||
<GridView ID="treeOses"></GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearOses" Click="OnBtnClearOsesClicked">Clear</Button>
|
||||
@@ -137,232 +139,234 @@
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Keywords" ID="tabKeywords">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New keyword:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewKeyword" />
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddKeyword" Click="OnBtnAddKeywordClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<GridView ID="treeKeywords" />
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearKeywords" Click="OnBtnClearKeywordsClicked">Clear</Button>
|
||||
<Button ID="btnRemoveKeyword" Click="OnBtnRemoveKeywordClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Barcodes" ID="tabBarcodes">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New barcode:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewBarcode" />
|
||||
</StackLayoutItem>
|
||||
<Label>type</Label>
|
||||
<ComboBox ID="cmbBarcodes" ReadOnly="True" />
|
||||
<Button ID="btnAddBarcode" Click="OnBtnAddBarcodeClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<GridView ID="treeBarcodes" />
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearBarcodes" Click="OnBtnClearBarcodesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveBarcode" Click="OnBtnRemoveBarcodeClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Categories" ID="tabCategories">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<Label>Categories</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New category:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewCategory" />
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddCategory" Click="OnBtnAddCategoryClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeCategories" />
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearCategories" Click="OnBtnClearCategoriesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveCategory" Click="OnBtnRemoveCategoryClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<Label>Subcategories</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New subcategory:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewSubcategory" />
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddSubcategory" Click="OnBtnAddSubcategoryClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeSubcategories" />
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearSubcategories" Click="OnBtnClearSubcategoriesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveSubcategory" Click="OnBtnRemoveSubcategoryClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Languages" ID="tabLanguages">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New language:</Label>
|
||||
<ComboBox ID="cmbLanguages" ReadOnly="True" />
|
||||
<Button ID="btnAddLanguage" Click="OnBtnAddLanguageClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeLanguages">
|
||||
</GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearLanguages" Click="OnBtnClearLanguagesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveLanguage" Click="OnBtnRemoveLanguageClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Architectures" ID="tabArchitectures">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New architecture:</Label>
|
||||
<ComboBox ID="cmbArchitectures" ReadOnly="True" />
|
||||
<Button ID="btnAddArchitecture" Click="OnBtnAddArchitectureClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeArchitectures">
|
||||
</GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearArchitectures" Click="OnBtnClearArchitecturesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveArchitecture" Click="OnBtnRemoveArchitectureClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Optical discs" ID="tabDiscs">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Choose disc to add:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<ComboBox ID="cmbFilesForNewDisc" ReadOnly="True" />
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddDisc" Click="OnBtnAddDiscClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeDiscs">
|
||||
</GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnStopAddDisc" Click="OnBtnStopAddDiscClicked" Visible="False">Stop</Button>
|
||||
<Button ID="btnEditDisc" Click="OnBtnEditDiscClicked">Edit</Button>
|
||||
<Button ID="btnClearDiscs" Click="OnBtnClearDiscsClicked">Clear</Button>
|
||||
<Button ID="btnRemoveDisc" Click="OnBtnRemoveDiscClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
<TabPage Text="Keywords" ID="tabKeywords">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New keyword:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewKeyword"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddKeyword" Click="OnBtnAddKeywordClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<GridView ID="treeKeywords"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearKeywords" Click="OnBtnClearKeywordsClicked">Clear</Button>
|
||||
<Button ID="btnRemoveKeyword" Click="OnBtnRemoveKeywordClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Barcodes" ID="tabBarcodes">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New barcode:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewBarcode"/>
|
||||
</StackLayoutItem>
|
||||
<Label>type</Label>
|
||||
<ComboBox ID="cmbBarcodes" ReadOnly="True"/>
|
||||
<Button ID="btnAddBarcode" Click="OnBtnAddBarcodeClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<GridView ID="treeBarcodes"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearBarcodes" Click="OnBtnClearBarcodesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveBarcode" Click="OnBtnRemoveBarcodeClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Categories" ID="tabCategories">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<Label>Categories</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New category:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewCategory"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddCategory" Click="OnBtnAddCategoryClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
|
||||
Expand="True">
|
||||
<GridView ID="treeCategories"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearCategories" Click="OnBtnClearCategoriesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveCategory" Click="OnBtnRemoveCategoryClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<Label>Subcategories</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New subcategory:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<TextBox ID="txtNewSubcategory"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddSubcategory" Click="OnBtnAddSubcategoryClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
|
||||
Expand="True">
|
||||
<GridView ID="treeSubcategories"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearSubcategories" Click="OnBtnClearSubcategoriesClicked">Clear
|
||||
</Button>
|
||||
<Button ID="btnRemoveSubcategory" Click="OnBtnRemoveSubcategoryClicked">Remove
|
||||
</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Languages" ID="tabLanguages">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New language:</Label>
|
||||
<ComboBox ID="cmbLanguages" ReadOnly="True"/>
|
||||
<Button ID="btnAddLanguage" Click="OnBtnAddLanguageClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeLanguages"></GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearLanguages" Click="OnBtnClearLanguagesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveLanguage" Click="OnBtnRemoveLanguageClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Architectures" ID="tabArchitectures">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>New architecture:</Label>
|
||||
<ComboBox ID="cmbArchitectures" ReadOnly="True"/>
|
||||
<Button ID="btnAddArchitecture" Click="OnBtnAddArchitectureClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeArchitectures"></GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnClearArchitectures" Click="OnBtnClearArchitecturesClicked">Clear</Button>
|
||||
<Button ID="btnRemoveArchitecture" Click="OnBtnRemoveArchitectureClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Optical discs" ID="tabDiscs">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Choose disc to add:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<ComboBox ID="cmbFilesForNewDisc" ReadOnly="True"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddDisc" Click="OnBtnAddDiscClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeDiscs"></GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnStopAddDisc" Click="OnBtnStopAddDiscClicked" Visible="False">Stop</Button>
|
||||
<Button ID="btnEditDisc" Click="OnBtnEditDiscClicked">Edit</Button>
|
||||
<Button ID="btnClearDiscs" Click="OnBtnClearDiscsClicked">Clear</Button>
|
||||
<Button ID="btnRemoveDisc" Click="OnBtnRemoveDiscClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisc1" Visible="False">Progress 1</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisc1" Visible="False" />
|
||||
<ProgressBar ID="prgAddDisc1" Visible="False"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisc2" Visible="False">Progress 2</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisc2" Visible="False" />
|
||||
<ProgressBar ID="prgAddDisc2" Visible="False"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Block disks" ID="tabDisks">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Choose disc to add:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<ComboBox ID="cmbFilesForNewDisk" ReadOnly="True" />
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddDisk" Click="OnBtnAddDiskClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeDisks">
|
||||
</GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnStopAddDisk" Click="OnBtnStopAddDiskClicked" Visible="False">Stop</Button>
|
||||
<Button ID="btnEditDisk" Click="OnBtnEditDiskClicked">Edit</Button>
|
||||
<Button ID="btnClearDisks" Click="OnBtnClearDisksClicked">Clear</Button>
|
||||
<Button ID="btnRemoveDisk" Click="OnBtnRemoveDiskClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisk1" Visible="False">Progress 1</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisk1" Visible="False" />
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisk2" Visible="False">Progress 2</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisk2" Visible="False" />
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
</TabControl>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnCancel" Click="OnBtnCancelClicked">Cancel</Button>
|
||||
<Button ID="btnOK" Click="OnBtnOKClicked">OK</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
<TabPage Text="Block disks" ID="tabDisks">
|
||||
<StackLayout Orientation="Vertical">
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Label>Choose disc to add:</Label>
|
||||
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||||
<ComboBox ID="cmbFilesForNewDisk" ReadOnly="True"/>
|
||||
</StackLayoutItem>
|
||||
<Button ID="btnAddDisk" Click="OnBtnAddDiskClicked">Add</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
||||
<GridView ID="treeDisks"></GridView>
|
||||
</StackLayoutItem>
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnStopAddDisk" Click="OnBtnStopAddDiskClicked" Visible="False">Stop</Button>
|
||||
<Button ID="btnEditDisk" Click="OnBtnEditDiskClicked">Edit</Button>
|
||||
<Button ID="btnClearDisks" Click="OnBtnClearDisksClicked">Clear</Button>
|
||||
<Button ID="btnRemoveDisk" Click="OnBtnRemoveDiskClicked">Remove</Button>
|
||||
</StackLayout>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisk1" Visible="False">Progress 1</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisk1" Visible="False"/>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<Label ID="lblAddDisk2" Visible="False">Progress 2</Label>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Stretch">
|
||||
<ProgressBar ID="prgAddDisk2" Visible="False"/>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
</TabPage>
|
||||
</TabControl>
|
||||
</StackLayoutItem>
|
||||
<StackLayoutItem HorizontalAlignment="Center">
|
||||
<StackLayout Orientation="Horizontal">
|
||||
<Button ID="btnCancel" Click="OnBtnCancelClicked">Cancel</Button>
|
||||
<Button ID="btnOK" Click="OnBtnOKClicked">OK</Button>
|
||||
</StackLayout>
|
||||
</StackLayoutItem>
|
||||
</StackLayout>
|
||||
<Form.Menu>
|
||||
<MenuBar>
|
||||
<ButtonMenuItem Text="F&ile">
|
||||
<ButtonMenuItem Text="New" Shortcut="CommonModifier+N" Click="OnNewClicked" />
|
||||
<ButtonMenuItem Text="Open" Shortcut="CommonModifier+O" Click="OnOpenClicked" />
|
||||
<ButtonMenuItem Text="New" Shortcut="CommonModifier+N" Click="OnNewClicked"/>
|
||||
<ButtonMenuItem Text="Open" Shortcut="CommonModifier+O" Click="OnOpenClicked"/>
|
||||
<SeparatorMenuItem/>
|
||||
<ButtonMenuItem Text="Save" Shortcut="CommonModifier+S" Click="OnSaveClicked" />
|
||||
<ButtonMenuItem Text="Save as" Shortcut="{On Control+Shift+S, Mac=AlternateModifier+Application+Shift+S}" Click="OnSaveAsClicked" />
|
||||
<ButtonMenuItem Text="Save" Shortcut="CommonModifier+S" Click="OnSaveClicked"/>
|
||||
<ButtonMenuItem Text="Save as"
|
||||
Shortcut="{On Control+Shift+S, Mac=AlternateModifier+Application+Shift+S}"
|
||||
Click="OnSaveAsClicked"/>
|
||||
</ButtonMenuItem>
|
||||
<MenuBar.ApplicationItems>
|
||||
<ButtonMenuItem Text="Preferences.." Shortcut="{On Control+Shift+Comma, Mac=Application+Comma}" />
|
||||
<ButtonMenuItem Text="Preferences.." Shortcut="{On Control+Shift+Comma, Mac=Application+Comma}"/>
|
||||
</MenuBar.ApplicationItems>
|
||||
<MenuBar.QuitItem>
|
||||
<ButtonMenuItem Text="Quit" Shortcut="CommonModifier+Q" Click="OnQuitClicked" />
|
||||
<ButtonMenuItem Text="Quit" Shortcut="CommonModifier+Q" Click="OnQuitClicked"/>
|
||||
</MenuBar.QuitItem>
|
||||
<MenuBar.AboutItem>
|
||||
<ButtonMenuItem Text="About..." Click="OnAboutClicked" />
|
||||
<ButtonMenuItem Text="About..." Click="OnAboutClicked"/>
|
||||
</MenuBar.AboutItem>
|
||||
</MenuBar>
|
||||
</Form.Menu>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -93,7 +93,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.Sequence).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, uint>(r => r.Sequence).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Sequence"
|
||||
});
|
||||
@@ -101,7 +101,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.StartSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, ulong>(r => r.StartSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Start"
|
||||
});
|
||||
@@ -109,7 +109,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<PartitionType, int>(r => r.EndSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<PartitionType, ulong>(r => r.EndSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "End"
|
||||
});
|
||||
@@ -235,7 +235,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -253,7 +253,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -271,7 +271,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -289,7 +289,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -307,7 +307,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -325,7 +325,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -343,7 +343,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -361,7 +361,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -379,7 +379,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -397,7 +397,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -415,7 +415,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -433,7 +433,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -451,7 +451,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -469,7 +469,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -487,7 +487,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -505,7 +505,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -523,7 +523,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -541,7 +541,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<DumpType, int>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<DumpType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -554,7 +554,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LayeredTextType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LayeredTextType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -572,7 +572,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LayeredTextType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LayeredTextType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -590,7 +590,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LayeredTextType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LayeredTextType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -608,7 +608,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LayeredTextType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LayeredTextType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -626,7 +626,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<LayeredTextType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<LayeredTextType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -650,7 +650,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<SectorsType, int>(r => r.layer).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<SectorsType, uint>(r => r.layer).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Layer"
|
||||
});
|
||||
@@ -658,7 +658,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<SectorsType, long>(r => r.Value).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<SectorsType, ulong>(r => r.Value).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Start"
|
||||
});
|
||||
@@ -679,7 +679,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BorderType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BorderType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -687,7 +687,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BorderType, int>(r => r.session).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BorderType, uint>(r => r.session).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Session"
|
||||
});
|
||||
@@ -705,7 +705,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BorderType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BorderType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -713,7 +713,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<BorderType, int>(r => r.session).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<BorderType, uint>(r => r.session).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Session"
|
||||
});
|
||||
@@ -727,7 +727,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, int>(r => r.Sequence.TrackNumber).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, uint>(r => r.Sequence.TrackNumber).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Track"
|
||||
});
|
||||
@@ -735,7 +735,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, int>(r => r.Sequence.Session).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, uint>(r => r.Sequence.Session).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Session"
|
||||
});
|
||||
@@ -748,7 +748,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, long>(r => r.Size).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, ulong>(r => r.Size).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Size"
|
||||
});
|
||||
@@ -761,7 +761,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, long>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, ulong>(r => r.Image.offset).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Offset"
|
||||
});
|
||||
@@ -779,7 +779,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, long>(r => r.StartSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, ulong>(r => r.StartSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "LBA Start"
|
||||
});
|
||||
@@ -787,7 +787,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, long>(r => r.EndSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, ulong>(r => r.EndSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "LBA End"
|
||||
});
|
||||
@@ -804,7 +804,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
DataCell = new TextBoxCell
|
||||
{
|
||||
Binding = Binding.Property<TrackType, int>(r => r.BytesPerSector).Convert(v => v.ToString())
|
||||
Binding = Binding.Property<TrackType, uint>(r => r.BytesPerSector).Convert(v => v.ToString())
|
||||
},
|
||||
HeaderText = "Bytes per sector"
|
||||
});
|
||||
@@ -1149,9 +1149,9 @@ namespace CICMMetadataEditor
|
||||
|
||||
lstLayers.Add(new SectorsType
|
||||
{
|
||||
layer = (int)spNewLayer.Value,
|
||||
layer = (byte)spNewLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = long.Parse(txtLayerSize.Text)
|
||||
Value = ulong.Parse(txtLayerSize.Text)
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1217,9 +1217,9 @@ namespace CICMMetadataEditor
|
||||
if(editingPartition) ((ObservableCollection<PartitionType>)treePartitions.DataStore).Remove(partitionIter);
|
||||
partitionIter = new PartitionType
|
||||
{
|
||||
Sequence = (int)spPartitionSequence.Value,
|
||||
StartSector = int.Parse(txtPartitionStart.Text),
|
||||
EndSector = int.Parse(txtPartitionEnd.Text),
|
||||
Sequence = (uint)spPartitionSequence.Value,
|
||||
StartSector = ulong.Parse(txtPartitionStart.Text),
|
||||
EndSector = ulong.Parse(txtPartitionEnd.Text),
|
||||
Type = txtPartitionType.Text,
|
||||
Name = txtPartitionName.Text,
|
||||
Description = txtPartitionDescription.Text
|
||||
@@ -1309,9 +1309,9 @@ namespace CICMMetadataEditor
|
||||
protected void OnBtnApplyTrackClicked(object sender, EventArgs e)
|
||||
{
|
||||
string file = trackIter.Image.Value;
|
||||
long filesize = trackIter.Size;
|
||||
ulong filesize = trackIter.Size;
|
||||
string fileformat = trackIter.Image.format;
|
||||
long fileoffset = trackIter.Image.offset;
|
||||
ulong fileoffset = trackIter.Image.offset;
|
||||
ChecksumType[] checksums = trackIter.Checksums;
|
||||
SubChannelType subchannel = trackIter.SubChannel;
|
||||
TrackTypeTrackType trackType =
|
||||
@@ -1322,21 +1322,21 @@ namespace CICMMetadataEditor
|
||||
trackIter = new TrackType
|
||||
{
|
||||
AccoustID = txtAcoustID.Text,
|
||||
BytesPerSector = int.Parse(txtBytesPerSector.Text),
|
||||
BytesPerSector = uint.Parse(txtBytesPerSector.Text),
|
||||
Checksums = checksums,
|
||||
EndMSF = txtMSFEnd.Text,
|
||||
EndSector = long.Parse(txtTrackEnd.Text),
|
||||
EndSector = ulong.Parse(txtTrackEnd.Text),
|
||||
Image =
|
||||
new ImageType {format = fileformat, offset = fileoffset, offsetSpecified = true, Value = file},
|
||||
Sequence =
|
||||
new TrackSequenceType
|
||||
{
|
||||
Session = int.Parse(txtSessionSequence.Text),
|
||||
TrackNumber = int.Parse(txtTrackSequence.Text)
|
||||
Session = uint.Parse(txtSessionSequence.Text),
|
||||
TrackNumber = uint.Parse(txtTrackSequence.Text)
|
||||
},
|
||||
Size = filesize,
|
||||
StartMSF = txtMSFStart.Text,
|
||||
StartSector = long.Parse(txtTrackStart.Text),
|
||||
StartSector = ulong.Parse(txtTrackStart.Text),
|
||||
SubChannel = subchannel,
|
||||
TrackType1 = trackType
|
||||
};
|
||||
@@ -1511,7 +1511,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
lstRingCodes.Add(new LayeredTextType
|
||||
{
|
||||
layer = (int)spRingCodeLayer.Value,
|
||||
layer = (uint)spRingCodeLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = txtRingCode.Text
|
||||
});
|
||||
@@ -1526,7 +1526,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
lstMasteringSIDs.Add(new LayeredTextType
|
||||
{
|
||||
layer = (int)spMasteringSIDLayer.Value,
|
||||
layer = (uint)spMasteringSIDLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = txtMasteringSID.Text
|
||||
});
|
||||
@@ -1542,7 +1542,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
lstToolstamps.Add(new LayeredTextType
|
||||
{
|
||||
layer = (int)spToolstampLayer.Value,
|
||||
layer = (uint)spToolstampLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = txtToolstamp.Text
|
||||
});
|
||||
@@ -1557,7 +1557,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
lstMouldSIDs.Add(new LayeredTextType
|
||||
{
|
||||
layer = (int)spMouldSIDLayer.Value,
|
||||
layer = (uint)spMouldSIDLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = txtMouldSID.Text
|
||||
});
|
||||
@@ -1572,7 +1572,7 @@ namespace CICMMetadataEditor
|
||||
{
|
||||
lstMouldTexts.Add(new LayeredTextType
|
||||
{
|
||||
layer = (int)spMouldTextLayer.Value,
|
||||
layer = (uint)spMouldTextLayer.Value,
|
||||
layerSpecified = true,
|
||||
Value = txtMouldText.Text
|
||||
});
|
||||
@@ -1688,29 +1688,29 @@ namespace CICMMetadataEditor
|
||||
if(!string.IsNullOrWhiteSpace(txtOffset.Text) && long.TryParse(txtOffset.Text, out ltmp))
|
||||
{
|
||||
Metadata.Image.offsetSpecified = true;
|
||||
Metadata.Image.offset = long.Parse(txtOffset.Text);
|
||||
Metadata.Image.offset = ulong.Parse(txtOffset.Text);
|
||||
}
|
||||
|
||||
Metadata.Size = long.Parse(txtSize.Text);
|
||||
Metadata.Size = ulong.Parse(txtSize.Text);
|
||||
|
||||
if(chkSequence.Checked.Value)
|
||||
{
|
||||
Metadata.Sequence = new SequenceType
|
||||
{
|
||||
MediaTitle = txtDiscTitle.Text,
|
||||
MediaSequence = (int)spSequence.Value,
|
||||
TotalMedia = (int)spTotalMedia.Value
|
||||
MediaSequence = (uint)spSequence.Value,
|
||||
TotalMedia = (uint)spTotalMedia.Value
|
||||
};
|
||||
if(spSide.Value > 0)
|
||||
{
|
||||
Metadata.Sequence.SideSpecified = true;
|
||||
Metadata.Sequence.Side = (int)spSide.Value;
|
||||
Metadata.Sequence.Side = (byte)spSide.Value;
|
||||
}
|
||||
|
||||
if(spLayer.Value > 0)
|
||||
{
|
||||
Metadata.Sequence.LayerSpecified = true;
|
||||
Metadata.Sequence.Layer = (int)spLayer.Value;
|
||||
Metadata.Sequence.Layer = (byte)spLayer.Value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1744,11 +1744,11 @@ namespace CICMMetadataEditor
|
||||
}
|
||||
|
||||
Metadata.Tracks = !string.IsNullOrWhiteSpace(txtMediaTracks.Text)
|
||||
? new[] {int.Parse(txtMediaTracks.Text)}
|
||||
: new[] {1};
|
||||
? new[] {uint.Parse(txtMediaTracks.Text)}
|
||||
: new[] {(uint)1};
|
||||
|
||||
Metadata.Sessions =
|
||||
!string.IsNullOrWhiteSpace(txtMediaSessions.Text) ? int.Parse(txtMediaSessions.Text) : 1;
|
||||
!string.IsNullOrWhiteSpace(txtMediaSessions.Text) ? uint.Parse(txtMediaSessions.Text) : 1;
|
||||
|
||||
if(!string.IsNullOrWhiteSpace(txtCopyProtection.Text)) Metadata.CopyProtection = txtCopyProtection.Text;
|
||||
|
||||
|
||||
281
cicm.xml
281
cicm.xml
@@ -50,14 +50,14 @@
|
||||
<!--Optional:-->
|
||||
<PublicationDate>2008-11-15</PublicationDate>
|
||||
<!--Optional:-->
|
||||
<Number>3</Number>
|
||||
<Number>7</Number>
|
||||
<!--Optional:-->
|
||||
<Language>
|
||||
<!--1 or more repetitions:-->
|
||||
<Language>ypk</Language>
|
||||
</Language>
|
||||
<!--Optional:-->
|
||||
<Pages>3</Pages>
|
||||
<Pages>7</Pages>
|
||||
<!--Optional:-->
|
||||
<PageSize>string</PageSize>
|
||||
<!--Optional:-->
|
||||
@@ -121,7 +121,7 @@
|
||||
<Language>kru</Language>
|
||||
</Language>
|
||||
<!--Optional:-->
|
||||
<Pages>3</Pages>
|
||||
<Pages>7</Pages>
|
||||
<!--Optional:-->
|
||||
<PageSize>string</PageSize>
|
||||
<Scan>
|
||||
@@ -198,7 +198,7 @@
|
||||
<!--1 or more repetitions:-->
|
||||
<Language>cau</Language>
|
||||
</Language>
|
||||
<Pages>3</Pages>
|
||||
<Pages>7</Pages>
|
||||
<!--Optional:-->
|
||||
<PageSize>string</PageSize>
|
||||
<!--Optional:-->
|
||||
@@ -237,13 +237,13 @@
|
||||
</UserManual>
|
||||
<!--Zero or more repetitions:-->
|
||||
<OpticalDisc>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Sequence>
|
||||
<!--Optional:-->
|
||||
<MediaTitle>string</MediaTitle>
|
||||
<MediaSequence>3</MediaSequence>
|
||||
<TotalMedia>3</TotalMedia>
|
||||
<MediaSequence>7</MediaSequence>
|
||||
<TotalMedia>7</TotalMedia>
|
||||
<!--Optional:-->
|
||||
<Side>2</Side>
|
||||
<!--Optional:-->
|
||||
@@ -252,7 +252,7 @@
|
||||
<!--Optional:-->
|
||||
<Layers type="PTP">
|
||||
<!--1 or more repetitions:-->
|
||||
<Sectors layer="3">10</Sectors>
|
||||
<Sectors layer="7">11</Sectors>
|
||||
</Layers>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
@@ -263,22 +263,22 @@
|
||||
<!--Optional:-->
|
||||
<SerialNumber>string</SerialNumber>
|
||||
<!--Zero or more repetitions:-->
|
||||
<RingCode layer="3">string</RingCode>
|
||||
<RingCode layer="7">string</RingCode>
|
||||
<!--Zero or more repetitions:-->
|
||||
<MasteringSID layer="3">string</MasteringSID>
|
||||
<MasteringSID layer="7">string</MasteringSID>
|
||||
<!--Zero or more repetitions:-->
|
||||
<Toolstamp layer="3">string</Toolstamp>
|
||||
<Toolstamp layer="7">string</Toolstamp>
|
||||
<!--Zero or more repetitions:-->
|
||||
<MouldSID layer="3">string</MouldSID>
|
||||
<MouldSID layer="7">string</MouldSID>
|
||||
<!--Zero or more repetitions:-->
|
||||
<MouldText layer="3">string</MouldText>
|
||||
<MouldText layer="7">string</MouldText>
|
||||
<DiscType>string</DiscType>
|
||||
<DiscSubType>string</DiscSubType>
|
||||
<!--Optional:-->
|
||||
<Offset>3</Offset>
|
||||
<!--1 or more repetitions:-->
|
||||
<Tracks>3</Tracks>
|
||||
<Sessions>3</Sessions>
|
||||
<Tracks>7</Tracks>
|
||||
<Sessions>7</Sessions>
|
||||
<!--Optional:-->
|
||||
<CopyProtection>string</CopyProtection>
|
||||
<Dimensions>
|
||||
@@ -446,7 +446,7 @@
|
||||
<!--Optional:-->
|
||||
<PFI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha256">string</Checksum>
|
||||
@@ -455,7 +455,7 @@
|
||||
<!--Optional:-->
|
||||
<DMI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="blake256">string</Checksum>
|
||||
@@ -464,7 +464,7 @@
|
||||
<!--Optional:-->
|
||||
<CMI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemed320">string</Checksum>
|
||||
@@ -473,7 +473,7 @@
|
||||
<!--Optional:-->
|
||||
<BCA>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="blake512">string</Checksum>
|
||||
@@ -482,7 +482,7 @@
|
||||
<!--Optional:-->
|
||||
<ATIP>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemed320">string</Checksum>
|
||||
@@ -491,7 +491,7 @@
|
||||
<!--Optional:-->
|
||||
<ADIP>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemed320">string</Checksum>
|
||||
@@ -500,7 +500,7 @@
|
||||
<!--Optional:-->
|
||||
<PMA>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha256">string</Checksum>
|
||||
@@ -509,7 +509,7 @@
|
||||
<!--Optional:-->
|
||||
<DDS>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemed320">string</Checksum>
|
||||
@@ -518,7 +518,7 @@
|
||||
<!--Optional:-->
|
||||
<SAI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha256">string</Checksum>
|
||||
@@ -527,7 +527,7 @@
|
||||
<!--Optional:-->
|
||||
<LastRMD>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="whirlpool">string</Checksum>
|
||||
@@ -536,7 +536,7 @@
|
||||
<!--Optional:-->
|
||||
<PRI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemd160">string</Checksum>
|
||||
@@ -545,7 +545,7 @@
|
||||
<!--Optional:-->
|
||||
<MediaID>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="blake512">string</Checksum>
|
||||
@@ -554,7 +554,7 @@
|
||||
<!--Optional:-->
|
||||
<PFIR>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha512">string</Checksum>
|
||||
@@ -563,7 +563,7 @@
|
||||
<!--Optional:-->
|
||||
<DCB>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemd128">string</Checksum>
|
||||
@@ -572,7 +572,7 @@
|
||||
<!--Optional:-->
|
||||
<DI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="blake256">string</Checksum>
|
||||
@@ -581,7 +581,7 @@
|
||||
<!--Optional:-->
|
||||
<PAC>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemed320">string</Checksum>
|
||||
@@ -590,7 +590,7 @@
|
||||
<!--Optional:-->
|
||||
<TOC>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc16ccitt">string</Checksum>
|
||||
@@ -599,25 +599,25 @@
|
||||
<!--Optional:-->
|
||||
<LeadInCdText>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha224">string</Checksum>
|
||||
</Checksums>
|
||||
</LeadInCdText>
|
||||
<!--Zero or more repetitions:-->
|
||||
<LeadIn session="3">
|
||||
<LeadIn session="7">
|
||||
<Image>string</Image>
|
||||
<Size>10</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="spamsum">string</Checksum>
|
||||
</Checksums>
|
||||
</LeadIn>
|
||||
<!--Zero or more repetitions:-->
|
||||
<LeadOut session="3">
|
||||
<LeadOut session="7">
|
||||
<Image>string</Image>
|
||||
<Size>10</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc64">string</Checksum>
|
||||
@@ -627,7 +627,7 @@
|
||||
<Xbox>
|
||||
<PFI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher32">string</Checksum>
|
||||
@@ -635,7 +635,7 @@
|
||||
</PFI>
|
||||
<DMI>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha224">string</Checksum>
|
||||
@@ -643,11 +643,11 @@
|
||||
</DMI>
|
||||
<!--1 or more repetitions:-->
|
||||
<SecuritySectors>
|
||||
<RequestVersion>3</RequestVersion>
|
||||
<RequestNumber>3</RequestNumber>
|
||||
<RequestVersion>7</RequestVersion>
|
||||
<RequestNumber>7</RequestNumber>
|
||||
<SecuritySectors>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha384">string</Checksum>
|
||||
@@ -662,20 +662,20 @@
|
||||
</PS3Encryption>
|
||||
<!--1 or more repetitions:-->
|
||||
<Track>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Sequence>
|
||||
<TrackNumber>3</TrackNumber>
|
||||
<Session>3</Session>
|
||||
<TrackNumber>7</TrackNumber>
|
||||
<Session>7</Session>
|
||||
</Sequence>
|
||||
<!--Optional:-->
|
||||
<StartMSF>string</StartMSF>
|
||||
<!--Optional:-->
|
||||
<EndMSF>string</EndMSF>
|
||||
<StartSector>10</StartSector>
|
||||
<EndSector>10</EndSector>
|
||||
<StartSector>11</StartSector>
|
||||
<EndSector>11</EndSector>
|
||||
<TrackType>bluray</TrackType>
|
||||
<BytesPerSector>3</BytesPerSector>
|
||||
<BytesPerSector>7</BytesPerSector>
|
||||
<!--Optional:-->
|
||||
<AccoustID>string</AccoustID>
|
||||
<Checksums>
|
||||
@@ -684,8 +684,8 @@
|
||||
</Checksums>
|
||||
<!--Optional:-->
|
||||
<SubChannel>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="md4">string</Checksum>
|
||||
@@ -695,13 +695,13 @@
|
||||
<FileSystemInformation>
|
||||
<!--1 or more repetitions:-->
|
||||
<Partition>
|
||||
<Sequence>3</Sequence>
|
||||
<Sequence>7</Sequence>
|
||||
<!--Optional:-->
|
||||
<Name>string</Name>
|
||||
<!--Optional:-->
|
||||
<Type>string</Type>
|
||||
<StartSector>3</StartSector>
|
||||
<EndSector>3</EndSector>
|
||||
<StartSector>7</StartSector>
|
||||
<EndSector>7</EndSector>
|
||||
<!--Optional:-->
|
||||
<Description>string</Description>
|
||||
<FileSystems>
|
||||
@@ -714,17 +714,17 @@
|
||||
<ModificationDate>2018-04-13T19:36:55</ModificationDate>
|
||||
<!--Optional:-->
|
||||
<BackupDate>2012-01-08T00:21:27+00:00</BackupDate>
|
||||
<ClusterSize>3</ClusterSize>
|
||||
<Clusters>10</Clusters>
|
||||
<ClusterSize>7</ClusterSize>
|
||||
<Clusters>11</Clusters>
|
||||
<!--Optional:-->
|
||||
<Files>10</Files>
|
||||
<Files>11</Files>
|
||||
<Bootable>true</Bootable>
|
||||
<!--Optional:-->
|
||||
<VolumeSerial>string</VolumeSerial>
|
||||
<!--Optional:-->
|
||||
<VolumeName>string</VolumeName>
|
||||
<!--Optional:-->
|
||||
<FreeClusters>10</FreeClusters>
|
||||
<FreeClusters>11</FreeClusters>
|
||||
<Dirty>true</Dirty>
|
||||
<!--Optional:-->
|
||||
<ExpirationDate>2002-05-25T15:08:08</ExpirationDate>
|
||||
@@ -828,18 +828,19 @@
|
||||
<Manufacturer>string</Manufacturer>
|
||||
<Product>string</Product>
|
||||
<File format="string">string</File>
|
||||
<FileSize>10</FileSize>
|
||||
<FileSize>11</FileSize>
|
||||
<!--Optional:-->
|
||||
<Frames>10</Frames>
|
||||
<Duration>10</Duration>
|
||||
<Frames>11</Frames>
|
||||
<Duration>1.051732E7</Duration>
|
||||
<!--Optional:-->
|
||||
<MeanFrameRate>3</MeanFrameRate>
|
||||
<MeanFrameRate>1.5E2</MeanFrameRate>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="adler32">string</Checksum>
|
||||
</Checksums>
|
||||
<!--Zero or more repetitions:-->
|
||||
<AudioTrack TrackNumber="3" AccoustID="string" Codec="string" Channels="3" SampleRate="3" MeanBitrate="10">
|
||||
<AudioTrack TrackNumber="7" AccoustID="string" Codec="string" Channels="7" SampleRate="1.051732E7"
|
||||
MeanBitrate="10">
|
||||
<!--Optional:-->
|
||||
<Languages>
|
||||
<!--1 or more repetitions:-->
|
||||
@@ -847,7 +848,7 @@
|
||||
</Languages>
|
||||
</AudioTrack>
|
||||
<!--Zero or more repetitions:-->
|
||||
<VideoTrack TrackNumber="3" Codec="string" Horizontal="3" Vertical="3" MeanBitrate="10" ThreeD="false">
|
||||
<VideoTrack TrackNumber="7" Codec="string" Horizontal="7" Vertical="7" MeanBitrate="10" ThreeD="false">
|
||||
<!--Optional:-->
|
||||
<Languages>
|
||||
<!--1 or more repetitions:-->
|
||||
@@ -855,7 +856,7 @@
|
||||
</Languages>
|
||||
</VideoTrack>
|
||||
<!--Zero or more repetitions:-->
|
||||
<SubtitleTrack TrackNumber="3" Codec="string">
|
||||
<SubtitleTrack TrackNumber="7" Codec="string">
|
||||
<!--Optional:-->
|
||||
<Languages>
|
||||
<!--1 or more repetitions:-->
|
||||
@@ -885,8 +886,8 @@
|
||||
</Advertisement>
|
||||
<!--Zero or more repetitions:-->
|
||||
<LinearMedia>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<ImageChecksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="dm6">string</Checksum>
|
||||
@@ -902,11 +903,11 @@
|
||||
<SerialNumber>string</SerialNumber>
|
||||
<Title>string</Title>
|
||||
<!--Optional:-->
|
||||
<Sequence>3</Sequence>
|
||||
<Sequence>7</Sequence>
|
||||
<!--Optional:-->
|
||||
<ImageInterleave>3</ImageInterleave>
|
||||
<ImageInterleave>7</ImageInterleave>
|
||||
<!--Optional:-->
|
||||
<Interleave>3</Interleave>
|
||||
<Interleave>7</Interleave>
|
||||
<!--Optional:-->
|
||||
<Manufacturer>string</Manufacturer>
|
||||
<!--Optional:-->
|
||||
@@ -1026,7 +1027,7 @@
|
||||
<PCMCIA>
|
||||
<CIS>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="tiger">string</Checksum>
|
||||
@@ -1050,12 +1051,12 @@
|
||||
</LinearMedia>
|
||||
<!--Zero or more repetitions:-->
|
||||
<PCICard>
|
||||
<VendorID>3</VendorID>
|
||||
<DeviceID>3</DeviceID>
|
||||
<VendorID>5</VendorID>
|
||||
<DeviceID>5</DeviceID>
|
||||
<!--Optional:-->
|
||||
<Configuration>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher32">string</Checksum>
|
||||
@@ -1063,8 +1064,8 @@
|
||||
</Configuration>
|
||||
<!--Optional:-->
|
||||
<ExpansionROM>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<ImageChecksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc16">string</Checksum>
|
||||
@@ -1080,11 +1081,11 @@
|
||||
<SerialNumber>string</SerialNumber>
|
||||
<Title>string</Title>
|
||||
<!--Optional:-->
|
||||
<Sequence>3</Sequence>
|
||||
<Sequence>7</Sequence>
|
||||
<!--Optional:-->
|
||||
<ImageInterleave>3</ImageInterleave>
|
||||
<ImageInterleave>7</ImageInterleave>
|
||||
<!--Optional:-->
|
||||
<Interleave>3</Interleave>
|
||||
<Interleave>7</Interleave>
|
||||
<!--Optional:-->
|
||||
<Manufacturer>string</Manufacturer>
|
||||
<!--Optional:-->
|
||||
@@ -1204,7 +1205,7 @@
|
||||
<PCMCIA>
|
||||
<CIS>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="tiger">string</Checksum>
|
||||
@@ -1229,8 +1230,8 @@
|
||||
</PCICard>
|
||||
<!--Zero or more repetitions:-->
|
||||
<BlockMedia>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="md4">string</Checksum>
|
||||
@@ -1242,8 +1243,8 @@
|
||||
<Sequence>
|
||||
<!--Optional:-->
|
||||
<MediaTitle>string</MediaTitle>
|
||||
<MediaSequence>3</MediaSequence>
|
||||
<TotalMedia>3</TotalMedia>
|
||||
<MediaSequence>7</MediaSequence>
|
||||
<TotalMedia>7</TotalMedia>
|
||||
<!--Optional:-->
|
||||
<Side>2</Side>
|
||||
<!--Optional:-->
|
||||
@@ -1263,35 +1264,35 @@
|
||||
<PartNumber>string</PartNumber>
|
||||
<!--Optional:-->
|
||||
<SerialNumber>string</SerialNumber>
|
||||
<PhysicalBlockSize>3</PhysicalBlockSize>
|
||||
<LogicalBlockSize>3</LogicalBlockSize>
|
||||
<LogicalBlocks>10</LogicalBlocks>
|
||||
<PhysicalBlockSize>7</PhysicalBlockSize>
|
||||
<LogicalBlockSize>7</LogicalBlockSize>
|
||||
<LogicalBlocks>11</LogicalBlocks>
|
||||
<!--Optional:-->
|
||||
<VariableBlockSize>
|
||||
<!--1 or more repetitions:-->
|
||||
<BlockSize startingBlock="3">3</BlockSize>
|
||||
<BlockSize startingBlock="7">7</BlockSize>
|
||||
</VariableBlockSize>
|
||||
<!--Optional:-->
|
||||
<TapeInformation>
|
||||
<!--1 or more repetitions:-->
|
||||
<Partition>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Sequence>10</Sequence>
|
||||
<StartBlock>10</StartBlock>
|
||||
<EndBlock>10</EndBlock>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Sequence>11</Sequence>
|
||||
<StartBlock>11</StartBlock>
|
||||
<EndBlock>11</EndBlock>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="adler32">string</Checksum>
|
||||
</Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<File>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Sequence>10</Sequence>
|
||||
<BlockSize>10</BlockSize>
|
||||
<StartBlock>10</StartBlock>
|
||||
<EndBlock>10</EndBlock>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Sequence>11</Sequence>
|
||||
<BlockSize>11</BlockSize>
|
||||
<StartBlock>11</StartBlock>
|
||||
<EndBlock>11</EndBlock>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="skein">string</Checksum>
|
||||
@@ -1378,7 +1379,7 @@
|
||||
<ATA>
|
||||
<Identify>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher32">string</Checksum>
|
||||
@@ -1387,12 +1388,12 @@
|
||||
</ATA>
|
||||
<!--Optional:-->
|
||||
<PCI>
|
||||
<VendorID>3</VendorID>
|
||||
<DeviceID>3</DeviceID>
|
||||
<VendorID>5</VendorID>
|
||||
<DeviceID>5</DeviceID>
|
||||
<!--Optional:-->
|
||||
<Configuration>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="adler32">string</Checksum>
|
||||
@@ -1400,8 +1401,8 @@
|
||||
</Configuration>
|
||||
<!--Optional:-->
|
||||
<ExpansionROM>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<ImageChecksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="snefru">string</Checksum>
|
||||
@@ -1417,11 +1418,11 @@
|
||||
<SerialNumber>string</SerialNumber>
|
||||
<Title>string</Title>
|
||||
<!--Optional:-->
|
||||
<Sequence>3</Sequence>
|
||||
<Sequence>7</Sequence>
|
||||
<!--Optional:-->
|
||||
<ImageInterleave>3</ImageInterleave>
|
||||
<ImageInterleave>7</ImageInterleave>
|
||||
<!--Optional:-->
|
||||
<Interleave>3</Interleave>
|
||||
<Interleave>7</Interleave>
|
||||
<!--Optional:-->
|
||||
<Manufacturer>string</Manufacturer>
|
||||
<!--Optional:-->
|
||||
@@ -1541,7 +1542,7 @@
|
||||
<PCMCIA>
|
||||
<CIS>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="ripemd128">string</Checksum>
|
||||
@@ -1568,7 +1569,7 @@
|
||||
<PCMCIA>
|
||||
<CIS>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher16">string</Checksum>
|
||||
@@ -1591,7 +1592,7 @@
|
||||
<SecureDigital>
|
||||
<CID>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc16">string</Checksum>
|
||||
@@ -1600,7 +1601,7 @@
|
||||
<!--Optional:-->
|
||||
<CSD>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc16ccitt">string</Checksum>
|
||||
@@ -1609,7 +1610,7 @@
|
||||
<!--Optional:-->
|
||||
<SCR>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="tiger">string</Checksum>
|
||||
@@ -1618,7 +1619,7 @@
|
||||
<!--Optional:-->
|
||||
<OCR>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher16">string</Checksum>
|
||||
@@ -1629,7 +1630,7 @@
|
||||
<MultiMediaCard>
|
||||
<CID>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher32">string</Checksum>
|
||||
@@ -1638,7 +1639,7 @@
|
||||
<!--Optional:-->
|
||||
<CSD>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc16">string</Checksum>
|
||||
@@ -1647,7 +1648,7 @@
|
||||
<!--Optional:-->
|
||||
<ExtendedCSD>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="md5">string</Checksum>
|
||||
@@ -1656,7 +1657,7 @@
|
||||
<!--Optional:-->
|
||||
<OCR>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="blake512">string</Checksum>
|
||||
@@ -1667,16 +1668,16 @@
|
||||
<SCSI>
|
||||
<Inquiry>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="tiger">string</Checksum>
|
||||
</Checksums>
|
||||
</Inquiry>
|
||||
<!--Zero or more repetitions:-->
|
||||
<EVPD page="3">
|
||||
<EVPD page="6">
|
||||
<Image>string</Image>
|
||||
<Size>10</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="md4">string</Checksum>
|
||||
@@ -1685,7 +1686,7 @@
|
||||
<!--Optional:-->
|
||||
<ModeSense>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="sha384">string</Checksum>
|
||||
@@ -1694,7 +1695,7 @@
|
||||
<!--Optional:-->
|
||||
<ModeSense10>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="dm6">string</Checksum>
|
||||
@@ -1703,7 +1704,7 @@
|
||||
<!--Optional:-->
|
||||
<LogSense>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="fletcher32">string</Checksum>
|
||||
@@ -1712,12 +1713,12 @@
|
||||
</SCSI>
|
||||
<!--Optional:-->
|
||||
<USB>
|
||||
<VendorID>3</VendorID>
|
||||
<ProductID>3</ProductID>
|
||||
<VendorID>5</VendorID>
|
||||
<ProductID>5</ProductID>
|
||||
<!--Optional:-->
|
||||
<Descriptors>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="md4">string</Checksum>
|
||||
@@ -1727,28 +1728,28 @@
|
||||
<!--Optional:-->
|
||||
<MAM>
|
||||
<Image>string</Image>
|
||||
<Size>3</Size>
|
||||
<Size>11</Size>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="crc64">string</Checksum>
|
||||
</Checksums>
|
||||
</MAM>
|
||||
<!--Optional:-->
|
||||
<Heads>10</Heads>
|
||||
<Heads>5</Heads>
|
||||
<!--Optional:-->
|
||||
<Cylinders>10</Cylinders>
|
||||
<Cylinders>7</Cylinders>
|
||||
<!--Optional:-->
|
||||
<SectorsPerTrack>10</SectorsPerTrack>
|
||||
<SectorsPerTrack>11</SectorsPerTrack>
|
||||
<!--Zero or more repetitions:-->
|
||||
<Track>
|
||||
<Image format="string" offset="10">string</Image>
|
||||
<Size>10</Size>
|
||||
<Head>10</Head>
|
||||
<Cylinder>10</Cylinder>
|
||||
<StartSector>10</StartSector>
|
||||
<EndSector>10</EndSector>
|
||||
<Sectors>10</Sectors>
|
||||
<BytesPerSector>3</BytesPerSector>
|
||||
<Image format="string" offset="11">string</Image>
|
||||
<Size>11</Size>
|
||||
<Head>5</Head>
|
||||
<Cylinder>7</Cylinder>
|
||||
<StartSector>11</StartSector>
|
||||
<EndSector>11</EndSector>
|
||||
<Sectors>11</Sectors>
|
||||
<BytesPerSector>7</BytesPerSector>
|
||||
<Checksums>
|
||||
<!--1 or more repetitions:-->
|
||||
<Checksum type="whirlpool">string</Checksum>
|
||||
|
||||
168
cicm.xsd
168
cicm.xsd
@@ -83,7 +83,7 @@
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="format" use="optional"/>
|
||||
<xs:attribute type="xs:long" name="offset" use="optional"/>
|
||||
<xs:attribute type="xs:unsignedLong" name="offset" use="optional"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
@@ -194,7 +194,7 @@
|
||||
<xs:documentation>File containing border dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of border dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -207,7 +207,7 @@
|
||||
</xs:sequence>
|
||||
<xs:attribute name="session">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -224,7 +224,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of track dump in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -245,12 +245,12 @@
|
||||
<xs:documentation>Track end address in MM:SS:FF</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Track start sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Track end sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -275,7 +275,7 @@
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="BytesPerSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="BytesPerSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Bytes per sector: 2048, 2352, 2448, etc, etc (as stored in image, not in physical
|
||||
format)
|
||||
@@ -333,7 +333,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Number" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Number" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Sequential number of this magazine
|
||||
</xs:documentation>
|
||||
@@ -345,7 +345,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Pages" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Pages" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Pages of this magazine, including cover and back
|
||||
</xs:documentation>
|
||||
@@ -390,17 +390,17 @@
|
||||
<xs:documentation>Filesystem last backup date</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="ClusterSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="ClusterSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Bytes per cluster</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Clusters" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Clusters" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Clusters in filesystem</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Files" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Files" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Files in filesystem</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -420,7 +420,7 @@
|
||||
<xs:documentation>Filesystem volume name</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="FreeClusters" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="FreeClusters" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Free clusters in filesystem</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -590,7 +590,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Image file size</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -667,12 +667,12 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Tracks" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:element type="xs:unsignedInt" name="Tracks" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Tracks on this disc/side</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Sessions" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Sessions" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Sessions on this disc/side</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -856,7 +856,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -872,12 +872,12 @@
|
||||
<xs:documentation>Partition type</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Partition starting sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Partition ending sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -913,7 +913,7 @@
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute name="layer">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="0"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -956,12 +956,12 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="XboxSecuritySectorsType">
|
||||
<xs:sequence>
|
||||
<xs:element type="xs:int" name="RequestVersion" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="RequestVersion" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Xbox SS Request Version</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="RequestNumber" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="RequestNumber" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Xbox SS Request Number</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1072,7 +1072,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="MediaSequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="MediaSequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Media title as printed in label</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1083,7 +1083,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -1094,7 +1094,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedByte">
|
||||
<xs:maxInclusive value="2"/>
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
@@ -1106,7 +1106,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedByte">
|
||||
<xs:minInclusive value="0"/>
|
||||
<xs:maxInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
@@ -1120,7 +1120,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:element type="xs:int" name="TrackNumber" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="TrackNumber" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Track number</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1130,7 +1130,7 @@
|
||||
<xs:documentation>Session this track belongs to</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -1174,7 +1174,7 @@
|
||||
<xs:documentation>Book language</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Pages" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Pages" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Book pages</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1229,7 +1229,7 @@
|
||||
<xs:documentation>File containing dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Size" maxOccurs="1" minOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" maxOccurs="1" minOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1466,8 +1466,8 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="SectorsType">
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:long">
|
||||
<xs:attribute type="xs:int" name="layer"/>
|
||||
<xs:extension base="xs:unsignedLong">
|
||||
<xs:attribute type="xs:unsignedInt" name="layer"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
@@ -1605,7 +1605,7 @@
|
||||
<xs:documentation>Language of the user manual</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Pages" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Pages" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Pages of the user manual</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -1637,13 +1637,13 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:element type="xs:long" name="Start">
|
||||
<xs:element type="xs:unsignedLong" name="Start">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Start of XGD's security sectors
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="End">
|
||||
<xs:element type="xs:unsignedLong" name="End">
|
||||
<xs:annotation>
|
||||
<xs:documentation>End of XGD's security sectors</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2192,7 +2192,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of subchannel dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2231,7 +2231,7 @@
|
||||
<xs:documentation>Track number in media container</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -2246,12 +2246,12 @@
|
||||
<xs:documentation>Track's codec</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Channels" type="xs:int" use="required">
|
||||
<xs:attribute name="Channels" type="xs:unsignedInt" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Audio channels</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="SampleRate" type="xs:int" use="required">
|
||||
<xs:attribute name="SampleRate" type="xs:double" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Audio sampling rate</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2276,7 +2276,7 @@
|
||||
<xs:documentation>Track number in media container</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -2286,12 +2286,12 @@
|
||||
<xs:documentation>Track's codec</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Horizontal" type="xs:int" use="required">
|
||||
<xs:attribute name="Horizontal" type="xs:unsignedInt" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Horizontal resolution in pixels</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Vertical" type="xs:int" use="required">
|
||||
<xs:attribute name="Vertical" type="xs:unsignedInt" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Vertical resolution in pixels</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2321,7 +2321,7 @@
|
||||
<xs:documentation>Track number in media container</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedInt">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
@@ -2477,22 +2477,22 @@
|
||||
<xs:documentation>File containing advertising</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="FileSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="FileSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of file</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Frames" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Frames" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Total video frames</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Duration" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:double" name="Duration" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Duration in seconds</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="MeanFrameRate" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:float" name="MeanFrameRate" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Mean framerate</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2540,7 +2540,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Image file size</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2574,18 +2574,18 @@
|
||||
<xs:documentation>Title as it is labeled on media</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Sequence" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Sequence" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Sequence of media</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="ImageInterleave" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="ImageInterleave" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>How many bytes must be read in image file for each byte in media
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="Interleave" minOccurs="0" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Interleave" minOccurs="0" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>How many bytes must be skipped in image file for each byte in media
|
||||
</xs:documentation>
|
||||
@@ -2692,7 +2692,7 @@
|
||||
<xs:documentation>Contains PCI Vendor ID</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedShort">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="65534"/>
|
||||
</xs:restriction>
|
||||
@@ -2703,7 +2703,7 @@
|
||||
<xs:documentation>Contains PCI Device ID</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedShort">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="65534"/>
|
||||
</xs:restriction>
|
||||
@@ -2728,7 +2728,7 @@
|
||||
<xs:documentation>File containing SCSI Extended Vendor Page Descriptor dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of SCSI Extended Vendor Page Descriptor dump</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2744,7 +2744,7 @@
|
||||
<xs:documentation>EVPD page</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedByte">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="255"/>
|
||||
</xs:restriction>
|
||||
@@ -2793,7 +2793,7 @@
|
||||
<xs:documentation>Contains USB Vendor ID</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedShort">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="65534"/>
|
||||
</xs:restriction>
|
||||
@@ -2804,7 +2804,7 @@
|
||||
<xs:documentation>Contains USB Product ID</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:restriction base="xs:unsignedShort">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="65534"/>
|
||||
</xs:restriction>
|
||||
@@ -2893,39 +2893,39 @@
|
||||
<xs:documentation>File containing track dump, and format</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of track dump in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Head" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedShort" name="Head" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Head (from 0) where this track resides</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Cylinder" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="Cylinder" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Cylinder where this track resides</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="StartSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Track start sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="EndSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Track end sector</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Sectors" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Sectors" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Sectors in track. Not necessarily EndSector-StartSector, as there can be hidden
|
||||
sectors
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="BytesPerSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="BytesPerSector" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Bytes per sector, physical undecoded tag-less</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -2953,7 +2953,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Image file size</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -3011,17 +3011,17 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="PhysicalBlockSize" minOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="PhysicalBlockSize" minOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Physical block size in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:int" name="LogicalBlockSize" minOccurs="1">
|
||||
<xs:element type="xs:unsignedInt" name="LogicalBlockSize" minOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Logical block size in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="LogicalBlocks" minOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="LogicalBlocks" minOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>User accessible logical blocks</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -3082,17 +3082,17 @@
|
||||
<xs:documentation>Medium Auxiliary Memory</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Heads" minOccurs="0">
|
||||
<xs:element type="xs:unsignedShort" name="Heads" minOccurs="0">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Real physical heads</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Cylinders" minOccurs="0">
|
||||
<xs:element type="xs:unsignedInt" name="Cylinders" minOccurs="0">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Real physical cylinders</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="SectorsPerTrack" minOccurs="0">
|
||||
<xs:element type="xs:unsignedLong" name="SectorsPerTrack" minOccurs="0">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Sectors per track, if constant, if not, this field is ommited and separate tracks
|
||||
must be indicated
|
||||
@@ -3150,7 +3150,7 @@
|
||||
<xs:documentation>File containing block dump, and format</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of block dump in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -3185,7 +3185,7 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Image file size</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -3261,8 +3261,8 @@
|
||||
</xs:complexType>
|
||||
<xs:complexType name="BlockSizeType">
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:int">
|
||||
<xs:attribute type="xs:int" name="startingBlock" use="required"/>
|
||||
<xs:extension base="xs:unsignedInt">
|
||||
<xs:attribute type="xs:unsignedInt" name="startingBlock" use="required"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
@@ -3283,22 +3283,22 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of partition dump in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Sequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Sequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Partition sequence</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="StartBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="StartBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Partition start block</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="EndBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="EndBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Partition end block</xs:documentation>
|
||||
</xs:annotation>
|
||||
@@ -3324,27 +3324,27 @@
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Size" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of file in bytes</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="Sequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="Sequence" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>File sequence</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="BlockSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="BlockSize" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Size of blocks in this file</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="StartBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="StartBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>File start block</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element type="xs:long" name="EndBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:element type="xs:unsignedLong" name="EndBlock" minOccurs="1" maxOccurs="1">
|
||||
<xs:annotation>
|
||||
<xs:documentation>File end block</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
328
dotnet/cicm.cs
328
dotnet/cicm.cs
File diff suppressed because it is too large
Load Diff
328
dotnet/cicm.vb
328
dotnet/cicm.vb
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,17 +2,19 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,10 +31,10 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Product" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="File" type="{}FileType"/>
|
||||
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Frames" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Duration" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="FileSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Frames" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Duration" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||
* <element name="MeanFrameRate" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="AudioTrack" type="{}AudioTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VideoTrack" type="{}VideoTracksType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
@@ -69,14 +71,16 @@ public class AdvertisementType {
|
||||
protected String product;
|
||||
@XmlElement(name = "File", required = true)
|
||||
protected FileType file;
|
||||
@XmlElement(name = "FileSize")
|
||||
protected long fileSize;
|
||||
@XmlElement(name = "FileSize", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger fileSize;
|
||||
@XmlElement(name = "Frames")
|
||||
protected Long frames;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger frames;
|
||||
@XmlElement(name = "Duration")
|
||||
protected long duration;
|
||||
protected double duration;
|
||||
@XmlElement(name = "MeanFrameRate")
|
||||
protected Integer meanFrameRate;
|
||||
protected Float meanFrameRate;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "AudioTrack")
|
||||
@@ -163,16 +167,24 @@ public class AdvertisementType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad fileSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getFileSize() {
|
||||
public BigInteger getFileSize() {
|
||||
return fileSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad fileSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFileSize(long value) {
|
||||
public void setFileSize(BigInteger value) {
|
||||
this.fileSize = value;
|
||||
}
|
||||
|
||||
@@ -181,10 +193,10 @@ public class AdvertisementType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public Long getFrames() {
|
||||
public BigInteger getFrames() {
|
||||
return frames;
|
||||
}
|
||||
|
||||
@@ -193,10 +205,10 @@ public class AdvertisementType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFrames(Long value) {
|
||||
public void setFrames(BigInteger value) {
|
||||
this.frames = value;
|
||||
}
|
||||
|
||||
@@ -204,7 +216,7 @@ public class AdvertisementType {
|
||||
* Obtiene el valor de la propiedad duration.
|
||||
*
|
||||
*/
|
||||
public long getDuration() {
|
||||
public double getDuration() {
|
||||
return duration;
|
||||
}
|
||||
|
||||
@@ -212,7 +224,7 @@ public class AdvertisementType {
|
||||
* Define el valor de la propiedad duration.
|
||||
*
|
||||
*/
|
||||
public void setDuration(long value) {
|
||||
public void setDuration(double value) {
|
||||
this.duration = value;
|
||||
}
|
||||
|
||||
@@ -221,10 +233,10 @@ public class AdvertisementType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public Integer getMeanFrameRate() {
|
||||
public Float getMeanFrameRate() {
|
||||
return meanFrameRate;
|
||||
}
|
||||
|
||||
@@ -233,10 +245,10 @@ public class AdvertisementType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public void setMeanFrameRate(Integer value) {
|
||||
public void setMeanFrameRate(Float value) {
|
||||
this.meanFrameRate = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
@@ -51,8 +53,9 @@ public class AudioBlockType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "AccoustID", required = true)
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
@@ -87,16 +90,24 @@ public class AudioBlockType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,17 +2,19 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -31,7 +33,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Sequence" type="{}SequenceType"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
@@ -73,8 +75,9 @@ public class AudioMediaType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
@@ -127,16 +130,24 @@ public class AudioMediaType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,15 +30,15 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="Channels" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="SampleRate" use="required" type="{http://www.w3.org/2001/XMLSchema}double" />
|
||||
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -55,15 +56,16 @@ public class AudioTracksType {
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected int trackNumber;
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
@XmlAttribute(name = "Channels", required = true)
|
||||
protected int channels;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long channels;
|
||||
@XmlAttribute(name = "SampleRate", required = true)
|
||||
protected int sampleRate;
|
||||
protected double sampleRate;
|
||||
@XmlAttribute(name = "MeanBitrate", required = true)
|
||||
protected long meanBitrate;
|
||||
|
||||
@@ -95,7 +97,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
@@ -103,7 +105,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
@@ -159,7 +161,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public int getChannels() {
|
||||
public long getChannels() {
|
||||
return channels;
|
||||
}
|
||||
|
||||
@@ -167,7 +169,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad channels.
|
||||
*
|
||||
*/
|
||||
public void setChannels(int value) {
|
||||
public void setChannels(long value) {
|
||||
this.channels = value;
|
||||
}
|
||||
|
||||
@@ -175,7 +177,7 @@ public class AudioTracksType {
|
||||
* Obtiene el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public int getSampleRate() {
|
||||
public double getSampleRate() {
|
||||
return sampleRate;
|
||||
}
|
||||
|
||||
@@ -183,7 +185,7 @@ public class AudioTracksType {
|
||||
* Define el valor de la propiedad sampleRate.
|
||||
*
|
||||
*/
|
||||
public void setSampleRate(int value) {
|
||||
public void setSampleRate(double value) {
|
||||
this.sampleRate = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,17 +2,19 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,7 +31,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="ContentChecksums" type="{}ChecksumsType"/>
|
||||
* <element name="Sequence" type="{}SequenceType"/>
|
||||
@@ -40,9 +42,9 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="Interface" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PhysicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="LogicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="LogicalBlocks" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="PhysicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="LogicalBlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="LogicalBlocks" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="VariableBlockSize" type="{}VariableBlockSizeType" minOccurs="0"/>
|
||||
* <element name="TapeInformation" type="{}TapeInformationType" minOccurs="0"/>
|
||||
* <element name="Scans" type="{}ScansType" minOccurs="0"/>
|
||||
@@ -54,9 +56,9 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="SCSI" type="{}SCSIType" minOccurs="0"/>
|
||||
* <element name="USB" type="{}USBType" minOccurs="0"/>
|
||||
* <element name="MAM" type="{}DumpType" minOccurs="0"/>
|
||||
* <element name="Heads" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Cylinders" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="SectorsPerTrack" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Heads" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* <element name="Cylinders" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="SectorsPerTrack" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Track" type="{}BlockTrackType" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Dimensions" type="{}DimensionsType"/>
|
||||
@@ -115,8 +117,9 @@ public class BlockMediaType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "ContentChecksums", required = true)
|
||||
@@ -138,11 +141,14 @@ public class BlockMediaType {
|
||||
@XmlElement(name = "SerialNumber")
|
||||
protected String serialNumber;
|
||||
@XmlElement(name = "PhysicalBlockSize")
|
||||
protected int physicalBlockSize;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long physicalBlockSize;
|
||||
@XmlElement(name = "LogicalBlockSize")
|
||||
protected int logicalBlockSize;
|
||||
@XmlElement(name = "LogicalBlocks")
|
||||
protected long logicalBlocks;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long logicalBlockSize;
|
||||
@XmlElement(name = "LogicalBlocks", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger logicalBlocks;
|
||||
@XmlElement(name = "VariableBlockSize")
|
||||
protected VariableBlockSizeType variableBlockSize;
|
||||
@XmlElement(name = "TapeInformation")
|
||||
@@ -166,11 +172,14 @@ public class BlockMediaType {
|
||||
@XmlElement(name = "MAM")
|
||||
protected DumpType mam;
|
||||
@XmlElement(name = "Heads")
|
||||
protected Long heads;
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer heads;
|
||||
@XmlElement(name = "Cylinders")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long cylinders;
|
||||
@XmlElement(name = "SectorsPerTrack")
|
||||
protected Long sectorsPerTrack;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sectorsPerTrack;
|
||||
@XmlElement(name = "Track")
|
||||
protected List<BlockTrackType> track;
|
||||
@XmlElement(name = "CopyProtection")
|
||||
@@ -213,16 +222,24 @@ public class BlockMediaType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -470,7 +487,7 @@ public class BlockMediaType {
|
||||
* Obtiene el valor de la propiedad physicalBlockSize.
|
||||
*
|
||||
*/
|
||||
public int getPhysicalBlockSize() {
|
||||
public long getPhysicalBlockSize() {
|
||||
return physicalBlockSize;
|
||||
}
|
||||
|
||||
@@ -478,7 +495,7 @@ public class BlockMediaType {
|
||||
* Define el valor de la propiedad physicalBlockSize.
|
||||
*
|
||||
*/
|
||||
public void setPhysicalBlockSize(int value) {
|
||||
public void setPhysicalBlockSize(long value) {
|
||||
this.physicalBlockSize = value;
|
||||
}
|
||||
|
||||
@@ -486,7 +503,7 @@ public class BlockMediaType {
|
||||
* Obtiene el valor de la propiedad logicalBlockSize.
|
||||
*
|
||||
*/
|
||||
public int getLogicalBlockSize() {
|
||||
public long getLogicalBlockSize() {
|
||||
return logicalBlockSize;
|
||||
}
|
||||
|
||||
@@ -494,23 +511,31 @@ public class BlockMediaType {
|
||||
* Define el valor de la propiedad logicalBlockSize.
|
||||
*
|
||||
*/
|
||||
public void setLogicalBlockSize(int value) {
|
||||
public void setLogicalBlockSize(long value) {
|
||||
this.logicalBlockSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad logicalBlocks.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getLogicalBlocks() {
|
||||
public BigInteger getLogicalBlocks() {
|
||||
return logicalBlocks;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad logicalBlocks.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setLogicalBlocks(long value) {
|
||||
public void setLogicalBlocks(BigInteger value) {
|
||||
this.logicalBlocks = value;
|
||||
}
|
||||
|
||||
@@ -783,10 +808,10 @@ public class BlockMediaType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Long getHeads() {
|
||||
public Integer getHeads() {
|
||||
return heads;
|
||||
}
|
||||
|
||||
@@ -795,10 +820,10 @@ public class BlockMediaType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setHeads(Long value) {
|
||||
public void setHeads(Integer value) {
|
||||
this.heads = value;
|
||||
}
|
||||
|
||||
@@ -831,10 +856,10 @@ public class BlockMediaType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public Long getSectorsPerTrack() {
|
||||
public BigInteger getSectorsPerTrack() {
|
||||
return sectorsPerTrack;
|
||||
}
|
||||
|
||||
@@ -843,10 +868,10 @@ public class BlockMediaType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSectorsPerTrack(Long value) {
|
||||
public void setSectorsPerTrack(BigInteger value) {
|
||||
this.sectorsPerTrack = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ package generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
@@ -23,8 +24,8 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
* <pre>
|
||||
* <complexType name="BlockSizeType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>int">
|
||||
* <attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>unsignedInt">
|
||||
* <attribute name="startingBlock" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
@@ -39,15 +40,17 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
public class BlockSizeType {
|
||||
|
||||
@XmlValue
|
||||
protected int value;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long value;
|
||||
@XmlAttribute(name = "startingBlock", required = true)
|
||||
protected int startingBlock;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long startingBlock;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public int getValue() {
|
||||
public long getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
@@ -55,7 +58,7 @@ public class BlockSizeType {
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
*/
|
||||
public void setValue(int value) {
|
||||
public void setValue(long value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@@ -63,7 +66,7 @@ public class BlockSizeType {
|
||||
* Obtiene el valor de la propiedad startingBlock.
|
||||
*
|
||||
*/
|
||||
public int getStartingBlock() {
|
||||
public long getStartingBlock() {
|
||||
return startingBlock;
|
||||
}
|
||||
|
||||
@@ -71,7 +74,7 @@ public class BlockSizeType {
|
||||
* Define el valor de la propiedad startingBlock.
|
||||
*
|
||||
*/
|
||||
public void setStartingBlock(int value) {
|
||||
public void setStartingBlock(long value) {
|
||||
this.startingBlock = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,13 +29,13 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Head" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Head" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* <element name="Cylinder" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sectors" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="Format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
@@ -61,20 +63,27 @@ public class BlockTrackType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Head")
|
||||
protected long head;
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int head;
|
||||
@XmlElement(name = "Cylinder")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long cylinder;
|
||||
@XmlElement(name = "StartSector")
|
||||
protected long startSector;
|
||||
@XmlElement(name = "EndSector")
|
||||
protected long endSector;
|
||||
@XmlElement(name = "Sectors")
|
||||
protected long sectors;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "Sectors", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sectors;
|
||||
@XmlElement(name = "BytesPerSector")
|
||||
protected int bytesPerSector;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long bytesPerSector;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "Format")
|
||||
@@ -107,16 +116,24 @@ public class BlockTrackType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -124,7 +141,7 @@ public class BlockTrackType {
|
||||
* Obtiene el valor de la propiedad head.
|
||||
*
|
||||
*/
|
||||
public long getHead() {
|
||||
public int getHead() {
|
||||
return head;
|
||||
}
|
||||
|
||||
@@ -132,7 +149,7 @@ public class BlockTrackType {
|
||||
* Define el valor de la propiedad head.
|
||||
*
|
||||
*/
|
||||
public void setHead(long value) {
|
||||
public void setHead(int value) {
|
||||
this.head = value;
|
||||
}
|
||||
|
||||
@@ -155,48 +172,72 @@ public class BlockTrackType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getStartSector() {
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(long value) {
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getEndSector() {
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(long value) {
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sectors.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSectors() {
|
||||
public BigInteger getSectors() {
|
||||
return sectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sectors.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSectors(long value) {
|
||||
public void setSectors(BigInteger value) {
|
||||
this.sectors = value;
|
||||
}
|
||||
|
||||
@@ -204,7 +245,7 @@ public class BlockTrackType {
|
||||
* Obtiene el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public int getBytesPerSector() {
|
||||
public long getBytesPerSector() {
|
||||
return bytesPerSector;
|
||||
}
|
||||
|
||||
@@ -212,7 +253,7 @@ public class BlockTrackType {
|
||||
* Define el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public void setBytesPerSector(int value) {
|
||||
public void setBytesPerSector(long value) {
|
||||
this.bytesPerSector = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType"/>
|
||||
* </sequence>
|
||||
@@ -75,7 +75,8 @@ public class BookType {
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected Integer pages;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan", required = true)
|
||||
@@ -254,10 +255,10 @@ public class BookType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getPages() {
|
||||
public Long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
@@ -266,10 +267,10 @@ public class BookType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPages(Integer value) {
|
||||
public void setPages(Long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,16 +2,18 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -26,12 +28,12 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
@@ -53,12 +55,13 @@ public class BorderType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "session")
|
||||
protected Integer session;
|
||||
protected Long session;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
@@ -87,16 +90,24 @@ public class BorderType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -129,10 +140,10 @@ public class BorderType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getSession() {
|
||||
public Long getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
@@ -141,10 +152,10 @@ public class BorderType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setSession(Integer value) {
|
||||
public void setSession(Long value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -28,7 +30,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -48,8 +50,9 @@ public class DumpType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size")
|
||||
protected int size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
@@ -80,16 +83,24 @@ public class DumpType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public int getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(int value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,16 +2,18 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -26,12 +28,12 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* <attribute name="page">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="255"/>
|
||||
* </restriction>
|
||||
@@ -54,12 +56,13 @@ public class EVPDType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected String image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlAttribute(name = "page")
|
||||
protected Integer page;
|
||||
protected Short page;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad image.
|
||||
@@ -88,16 +91,24 @@ public class EVPDType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -130,10 +141,10 @@ public class EVPDType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Integer getPage() {
|
||||
public Short getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
@@ -142,10 +153,10 @@ public class EVPDType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setPage(Integer value) {
|
||||
public void setPage(Short value) {
|
||||
this.page = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,12 +2,13 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -32,13 +33,13 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ModificationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="BackupDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Files" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="ClusterSize" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Clusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Files" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Bootable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="VolumeSerial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="VolumeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="FreeClusters" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="Dirty" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="ExpirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
* <element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||
@@ -93,11 +94,14 @@ public class FileSystemType {
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar backupDate;
|
||||
@XmlElement(name = "ClusterSize")
|
||||
protected int clusterSize;
|
||||
@XmlElement(name = "Clusters")
|
||||
protected long clusters;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long clusterSize;
|
||||
@XmlElement(name = "Clusters", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger clusters;
|
||||
@XmlElement(name = "Files")
|
||||
protected Long files;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger files;
|
||||
@XmlElement(name = "Bootable")
|
||||
protected boolean bootable;
|
||||
@XmlElement(name = "VolumeSerial")
|
||||
@@ -105,7 +109,8 @@ public class FileSystemType {
|
||||
@XmlElement(name = "VolumeName")
|
||||
protected String volumeName;
|
||||
@XmlElement(name = "FreeClusters")
|
||||
protected Long freeClusters;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger freeClusters;
|
||||
@XmlElement(name = "Dirty")
|
||||
protected boolean dirty;
|
||||
@XmlElement(name = "ExpirationDate")
|
||||
@@ -227,7 +232,7 @@ public class FileSystemType {
|
||||
* Obtiene el valor de la propiedad clusterSize.
|
||||
*
|
||||
*/
|
||||
public int getClusterSize() {
|
||||
public long getClusterSize() {
|
||||
return clusterSize;
|
||||
}
|
||||
|
||||
@@ -235,23 +240,31 @@ public class FileSystemType {
|
||||
* Define el valor de la propiedad clusterSize.
|
||||
*
|
||||
*/
|
||||
public void setClusterSize(int value) {
|
||||
public void setClusterSize(long value) {
|
||||
this.clusterSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad clusters.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getClusters() {
|
||||
public BigInteger getClusters() {
|
||||
return clusters;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad clusters.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setClusters(long value) {
|
||||
public void setClusters(BigInteger value) {
|
||||
this.clusters = value;
|
||||
}
|
||||
|
||||
@@ -260,10 +273,10 @@ public class FileSystemType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public Long getFiles() {
|
||||
public BigInteger getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
@@ -272,10 +285,10 @@ public class FileSystemType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFiles(Long value) {
|
||||
public void setFiles(BigInteger value) {
|
||||
this.files = value;
|
||||
}
|
||||
|
||||
@@ -348,10 +361,10 @@ public class FileSystemType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public Long getFreeClusters() {
|
||||
public BigInteger getFreeClusters() {
|
||||
return freeClusters;
|
||||
}
|
||||
|
||||
@@ -360,10 +373,10 @@ public class FileSystemType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFreeClusters(Long value) {
|
||||
public void setFreeClusters(BigInteger value) {
|
||||
this.freeClusters = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
@@ -28,7 +30,7 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* <attribute name="offset" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
@@ -47,7 +49,8 @@ public class ImageType {
|
||||
@XmlAttribute(name = "format")
|
||||
protected String format;
|
||||
@XmlAttribute(name = "offset")
|
||||
protected Long offset;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger offset;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
@@ -102,10 +105,10 @@ public class ImageType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public Long getOffset() {
|
||||
public BigInteger getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
@@ -114,10 +117,10 @@ public class ImageType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setOffset(Long value) {
|
||||
public void setOffset(BigInteger value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||
* <attribute name="layer">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="0"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
@@ -47,7 +47,7 @@ public class LayeredTextType {
|
||||
@XmlValue
|
||||
protected String value;
|
||||
@XmlAttribute(name = "layer")
|
||||
protected Integer layer;
|
||||
protected Long layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
@@ -78,10 +78,10 @@ public class LayeredTextType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
public Long getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
@@ -90,10 +90,10 @@ public class LayeredTextType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
public void setLayer(Long value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,15 +31,15 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="ImageChecksums" type="{}ChecksumsType"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType" minOccurs="0"/>
|
||||
* <element name="PartNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="ImageInterleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Interleave" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Package" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
@@ -81,8 +83,9 @@ public class LinearMediaType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "ImageChecksums", required = true)
|
||||
protected ChecksumsType imageChecksums;
|
||||
@XmlElement(name = "Checksums")
|
||||
@@ -94,11 +97,14 @@ public class LinearMediaType {
|
||||
@XmlElement(name = "Title", required = true)
|
||||
protected String title;
|
||||
@XmlElement(name = "Sequence")
|
||||
protected Integer sequence;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long sequence;
|
||||
@XmlElement(name = "ImageInterleave")
|
||||
protected Integer imageInterleave;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long imageInterleave;
|
||||
@XmlElement(name = "Interleave")
|
||||
protected Integer interleave;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long interleave;
|
||||
@XmlElement(name = "Manufacturer")
|
||||
protected String manufacturer;
|
||||
@XmlElement(name = "Model")
|
||||
@@ -145,16 +151,24 @@ public class LinearMediaType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -283,10 +297,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getSequence() {
|
||||
public Long getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
@@ -295,10 +309,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setSequence(Integer value) {
|
||||
public void setSequence(Long value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
@@ -307,10 +321,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getImageInterleave() {
|
||||
public Long getImageInterleave() {
|
||||
return imageInterleave;
|
||||
}
|
||||
|
||||
@@ -319,10 +333,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setImageInterleave(Integer value) {
|
||||
public void setImageInterleave(Long value) {
|
||||
this.imageInterleave = value;
|
||||
}
|
||||
|
||||
@@ -331,10 +345,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getInterleave() {
|
||||
public Long getInterleave() {
|
||||
return interleave;
|
||||
}
|
||||
|
||||
@@ -343,10 +357,10 @@ public class LinearMediaType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setInterleave(Integer value) {
|
||||
public void setInterleave(Long value) {
|
||||
this.interleave = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -31,9 +31,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Editorial" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
@@ -71,11 +71,13 @@ public class MagazineType {
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar publicationDate;
|
||||
@XmlElement(name = "Number")
|
||||
protected Integer number;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long number;
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected Integer pages;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
@@ -206,10 +208,10 @@ public class MagazineType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getNumber() {
|
||||
public Long getNumber() {
|
||||
return number;
|
||||
}
|
||||
|
||||
@@ -218,10 +220,10 @@ public class MagazineType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setNumber(Integer value) {
|
||||
public void setNumber(Long value) {
|
||||
this.number = value;
|
||||
}
|
||||
|
||||
@@ -254,10 +256,10 @@ public class MagazineType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getPages() {
|
||||
public Long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
@@ -266,10 +268,10 @@ public class MagazineType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setPages(Integer value) {
|
||||
public void setPages(Long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,17 +2,19 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{}SequenceType"/>
|
||||
* <element name="Layers" type="{}LayersType" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
@@ -41,8 +43,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="DiscType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DiscSubType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded"/>
|
||||
* <element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Tracks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" maxOccurs="unbounded"/>
|
||||
* <element name="Sessions" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="CopyProtection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Dimensions" type="{}DimensionsType"/>
|
||||
* <element name="Case" type="{}CaseType" minOccurs="0"/>
|
||||
@@ -131,8 +133,9 @@ public class OpticalDiscType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected SequenceType sequence;
|
||||
@XmlElement(name = "Layers")
|
||||
@@ -159,10 +162,12 @@ public class OpticalDiscType {
|
||||
protected String discSubType;
|
||||
@XmlElement(name = "Offset")
|
||||
protected Integer offset;
|
||||
@XmlElement(name = "Tracks", type = Integer.class)
|
||||
protected List<Integer> tracks;
|
||||
@XmlElement(name = "Tracks", type = Long.class)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected List<Long> tracks;
|
||||
@XmlElement(name = "Sessions")
|
||||
protected int sessions;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long sessions;
|
||||
@XmlElement(name = "CopyProtection")
|
||||
protected String copyProtection;
|
||||
@XmlElement(name = "Dimensions", required = true)
|
||||
@@ -247,16 +252,24 @@ public class OpticalDiscType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -615,13 +628,13 @@ public class OpticalDiscType {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Integer> getTracks() {
|
||||
public List<Long> getTracks() {
|
||||
if (tracks == null) {
|
||||
tracks = new ArrayList<Integer>();
|
||||
tracks = new ArrayList<Long>();
|
||||
}
|
||||
return this.tracks;
|
||||
}
|
||||
@@ -630,7 +643,7 @@ public class OpticalDiscType {
|
||||
* Obtiene el valor de la propiedad sessions.
|
||||
*
|
||||
*/
|
||||
public int getSessions() {
|
||||
public long getSessions() {
|
||||
return sessions;
|
||||
}
|
||||
|
||||
@@ -638,7 +651,7 @@ public class OpticalDiscType {
|
||||
* Define el valor de la propiedad sessions.
|
||||
*
|
||||
*/
|
||||
public void setSessions(int value) {
|
||||
public void setSessions(long value) {
|
||||
this.sessions = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <sequence>
|
||||
* <element name="VendorID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
@@ -36,7 +36,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </element>
|
||||
* <element name="DeviceID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -26,15 +28,15 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <sequence>
|
||||
* <element name="Sequence">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FileSystems" type="{}FileSystemsType"/>
|
||||
* </sequence>
|
||||
@@ -58,15 +60,17 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class PartitionType {
|
||||
|
||||
@XmlElement(name = "Sequence")
|
||||
protected int sequence;
|
||||
protected long sequence;
|
||||
@XmlElement(name = "Name")
|
||||
protected String name;
|
||||
@XmlElement(name = "Type")
|
||||
protected String type;
|
||||
@XmlElement(name = "StartSector")
|
||||
protected int startSector;
|
||||
@XmlElement(name = "EndSector")
|
||||
protected int endSector;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "Description")
|
||||
protected String description;
|
||||
@XmlElement(name = "FileSystems", required = true)
|
||||
@@ -76,7 +80,7 @@ public class PartitionType {
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
*/
|
||||
public int getSequence() {
|
||||
public long getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
@@ -84,7 +88,7 @@ public class PartitionType {
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
*/
|
||||
public void setSequence(int value) {
|
||||
public void setSequence(long value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
@@ -139,32 +143,48 @@ public class PartitionType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public int getStartSector() {
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(int value) {
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public int getEndSector() {
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(int value) {
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
@@ -23,8 +25,8 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
* <pre>
|
||||
* <complexType name="SectorsType">
|
||||
* <simpleContent>
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>long">
|
||||
* <attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <extension base="<http://www.w3.org/2001/XMLSchema>unsignedLong">
|
||||
* <attribute name="layer" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
@@ -39,23 +41,33 @@ import javax.xml.bind.annotation.XmlValue;
|
||||
public class SectorsType {
|
||||
|
||||
@XmlValue
|
||||
protected long value;
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger value;
|
||||
@XmlAttribute(name = "layer")
|
||||
protected Integer layer;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getValue() {
|
||||
public BigInteger getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setValue(long value) {
|
||||
public void setValue(BigInteger value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@@ -64,10 +76,10 @@ public class SectorsType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
public Long getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
@@ -76,10 +88,10 @@ public class SectorsType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
public void setLayer(Long value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,8 +29,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Start" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="End" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -44,40 +46,58 @@ import javax.xml.bind.annotation.XmlType;
|
||||
})
|
||||
public class SecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "Start")
|
||||
protected long start;
|
||||
@XmlElement(name = "End")
|
||||
protected long end;
|
||||
@XmlElement(name = "Start", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger start;
|
||||
@XmlElement(name = "End", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger end;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad start.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getStart() {
|
||||
public BigInteger getStart() {
|
||||
return start;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad start.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStart(long value) {
|
||||
public void setStart(BigInteger value) {
|
||||
this.start = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad end.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getEnd() {
|
||||
public BigInteger getEnd() {
|
||||
return end;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad end.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEnd(long value) {
|
||||
public void setEnd(BigInteger value) {
|
||||
this.end = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ package generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -28,17 +29,17 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MediaTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="MediaSequence" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="TotalMedia">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Side" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <maxInclusive value="2"/>
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
@@ -46,7 +47,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </element>
|
||||
* <element name="Layer" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <minInclusive value="0"/>
|
||||
* <maxInclusive value="1"/>
|
||||
* </restriction>
|
||||
@@ -73,13 +74,14 @@ public class SequenceType {
|
||||
@XmlElement(name = "MediaTitle")
|
||||
protected String mediaTitle;
|
||||
@XmlElement(name = "MediaSequence")
|
||||
protected int mediaSequence;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long mediaSequence;
|
||||
@XmlElement(name = "TotalMedia")
|
||||
protected int totalMedia;
|
||||
protected long totalMedia;
|
||||
@XmlElement(name = "Side")
|
||||
protected Integer side;
|
||||
protected Short side;
|
||||
@XmlElement(name = "Layer")
|
||||
protected Integer layer;
|
||||
protected Short layer;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad mediaTitle.
|
||||
@@ -109,7 +111,7 @@ public class SequenceType {
|
||||
* Obtiene el valor de la propiedad mediaSequence.
|
||||
*
|
||||
*/
|
||||
public int getMediaSequence() {
|
||||
public long getMediaSequence() {
|
||||
return mediaSequence;
|
||||
}
|
||||
|
||||
@@ -117,7 +119,7 @@ public class SequenceType {
|
||||
* Define el valor de la propiedad mediaSequence.
|
||||
*
|
||||
*/
|
||||
public void setMediaSequence(int value) {
|
||||
public void setMediaSequence(long value) {
|
||||
this.mediaSequence = value;
|
||||
}
|
||||
|
||||
@@ -125,7 +127,7 @@ public class SequenceType {
|
||||
* Obtiene el valor de la propiedad totalMedia.
|
||||
*
|
||||
*/
|
||||
public int getTotalMedia() {
|
||||
public long getTotalMedia() {
|
||||
return totalMedia;
|
||||
}
|
||||
|
||||
@@ -133,7 +135,7 @@ public class SequenceType {
|
||||
* Define el valor de la propiedad totalMedia.
|
||||
*
|
||||
*/
|
||||
public void setTotalMedia(int value) {
|
||||
public void setTotalMedia(long value) {
|
||||
this.totalMedia = value;
|
||||
}
|
||||
|
||||
@@ -142,10 +144,10 @@ public class SequenceType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Integer getSide() {
|
||||
public Short getSide() {
|
||||
return side;
|
||||
}
|
||||
|
||||
@@ -154,10 +156,10 @@ public class SequenceType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setSide(Integer value) {
|
||||
public void setSide(Short value) {
|
||||
this.side = value;
|
||||
}
|
||||
|
||||
@@ -166,10 +168,10 @@ public class SequenceType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public Integer getLayer() {
|
||||
public Short getLayer() {
|
||||
return layer;
|
||||
}
|
||||
|
||||
@@ -178,10 +180,10 @@ public class SequenceType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setLayer(Integer value) {
|
||||
public void setLayer(Short value) {
|
||||
this.layer = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -47,8 +49,9 @@ public class SubChannelType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
@@ -79,16 +82,24 @@ public class SubChannelType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
@@ -51,7 +51,7 @@ public class SubtitleTracksType {
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected int trackNumber;
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
|
||||
@@ -83,7 +83,7 @@ public class SubtitleTracksType {
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ public class SubtitleTracksType {
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,11 +29,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="BlockSize" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -55,16 +57,21 @@ public class TapeFileType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Sequence")
|
||||
protected long sequence;
|
||||
@XmlElement(name = "BlockSize")
|
||||
protected long blockSize;
|
||||
@XmlElement(name = "StartBlock")
|
||||
protected long startBlock;
|
||||
@XmlElement(name = "EndBlock")
|
||||
protected long endBlock;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sequence;
|
||||
@XmlElement(name = "BlockSize", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger blockSize;
|
||||
@XmlElement(name = "StartBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startBlock;
|
||||
@XmlElement(name = "EndBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endBlock;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
|
||||
@@ -95,80 +102,120 @@ public class TapeFileType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSequence() {
|
||||
public BigInteger getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSequence(long value) {
|
||||
public void setSequence(BigInteger value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad blockSize.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getBlockSize() {
|
||||
public BigInteger getBlockSize() {
|
||||
return blockSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad blockSize.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setBlockSize(long value) {
|
||||
public void setBlockSize(BigInteger value) {
|
||||
this.blockSize = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getStartBlock() {
|
||||
public BigInteger getStartBlock() {
|
||||
return startBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartBlock(long value) {
|
||||
public void setStartBlock(BigInteger value) {
|
||||
this.startBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getEndBlock() {
|
||||
public BigInteger getEndBlock() {
|
||||
return endBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndBlock(long value) {
|
||||
public void setEndBlock(BigInteger value) {
|
||||
this.endBlock = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,17 +2,19 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,10 +31,10 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="StartBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndBlock" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <sequence>
|
||||
* <element name="File" type="{}TapeFileType" maxOccurs="unbounded"/>
|
||||
@@ -59,14 +61,18 @@ public class TapePartitionType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Sequence")
|
||||
protected long sequence;
|
||||
@XmlElement(name = "StartBlock")
|
||||
protected long startBlock;
|
||||
@XmlElement(name = "EndBlock")
|
||||
protected long endBlock;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger sequence;
|
||||
@XmlElement(name = "StartBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startBlock;
|
||||
@XmlElement(name = "EndBlock", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endBlock;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
protected ChecksumsType checksums;
|
||||
@XmlElement(name = "File", required = true)
|
||||
@@ -99,64 +105,96 @@ public class TapePartitionType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad sequence.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSequence() {
|
||||
public BigInteger getSequence() {
|
||||
return sequence;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad sequence.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSequence(long value) {
|
||||
public void setSequence(BigInteger value) {
|
||||
this.sequence = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getStartBlock() {
|
||||
public BigInteger getStartBlock() {
|
||||
return startBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartBlock(long value) {
|
||||
public void setStartBlock(BigInteger value) {
|
||||
this.startBlock = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endBlock.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getEndBlock() {
|
||||
public BigInteger getEndBlock() {
|
||||
return endBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endBlock.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndBlock(long value) {
|
||||
public void setEndBlock(BigInteger value) {
|
||||
this.endBlock = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ package generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,10 +28,10 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="TrackNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Session">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
@@ -51,15 +52,16 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class TrackSequenceType {
|
||||
|
||||
@XmlElement(name = "TrackNumber")
|
||||
protected int trackNumber;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long trackNumber;
|
||||
@XmlElement(name = "Session")
|
||||
protected int session;
|
||||
protected long session;
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
@@ -67,7 +69,7 @@ public class TrackSequenceType {
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
@@ -75,7 +77,7 @@ public class TrackSequenceType {
|
||||
* Obtiene el valor de la propiedad session.
|
||||
*
|
||||
*/
|
||||
public int getSession() {
|
||||
public long getSession() {
|
||||
return session;
|
||||
}
|
||||
|
||||
@@ -83,7 +85,7 @@ public class TrackSequenceType {
|
||||
* Define el valor de la propiedad session.
|
||||
*
|
||||
*/
|
||||
public void setSession(int value) {
|
||||
public void setSession(long value) {
|
||||
this.session = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,15 +2,17 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -27,12 +29,12 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Image" type="{}ImageType"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="Size" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="Sequence" type="{}TrackSequenceType"/>
|
||||
* <element name="StartMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="EndMSF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="StartSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="EndSector" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="TrackType">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
@@ -49,7 +51,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="BytesPerSector" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="AccoustID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Checksums" type="{}ChecksumsType"/>
|
||||
* <element name="SubChannel" type="{}SubChannelType" minOccurs="0"/>
|
||||
@@ -82,22 +84,26 @@ public class TrackType {
|
||||
|
||||
@XmlElement(name = "Image", required = true)
|
||||
protected ImageType image;
|
||||
@XmlElement(name = "Size")
|
||||
protected long size;
|
||||
@XmlElement(name = "Size", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger size;
|
||||
@XmlElement(name = "Sequence", required = true)
|
||||
protected TrackSequenceType sequence;
|
||||
@XmlElement(name = "StartMSF")
|
||||
protected String startMSF;
|
||||
@XmlElement(name = "EndMSF")
|
||||
protected String endMSF;
|
||||
@XmlElement(name = "StartSector")
|
||||
protected long startSector;
|
||||
@XmlElement(name = "EndSector")
|
||||
protected long endSector;
|
||||
@XmlElement(name = "StartSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger startSector;
|
||||
@XmlElement(name = "EndSector", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger endSector;
|
||||
@XmlElement(name = "TrackType", required = true)
|
||||
protected String trackType;
|
||||
@XmlElement(name = "BytesPerSector")
|
||||
protected int bytesPerSector;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long bytesPerSector;
|
||||
@XmlElement(name = "AccoustID")
|
||||
protected String accoustID;
|
||||
@XmlElement(name = "Checksums", required = true)
|
||||
@@ -134,16 +140,24 @@ public class TrackType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad size.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getSize() {
|
||||
public BigInteger getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad size.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSize(long value) {
|
||||
public void setSize(BigInteger value) {
|
||||
this.size = value;
|
||||
}
|
||||
|
||||
@@ -222,32 +236,48 @@ public class TrackType {
|
||||
/**
|
||||
* Obtiene el valor de la propiedad startSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getStartSector() {
|
||||
public BigInteger getStartSector() {
|
||||
return startSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad startSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setStartSector(long value) {
|
||||
public void setStartSector(BigInteger value) {
|
||||
this.startSector = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Obtiene el valor de la propiedad endSector.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public long getEndSector() {
|
||||
public BigInteger getEndSector() {
|
||||
return endSector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define el valor de la propiedad endSector.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setEndSector(long value) {
|
||||
public void setEndSector(BigInteger value) {
|
||||
this.endSector = value;
|
||||
}
|
||||
|
||||
@@ -279,7 +309,7 @@ public class TrackType {
|
||||
* Obtiene el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public int getBytesPerSector() {
|
||||
public long getBytesPerSector() {
|
||||
return bytesPerSector;
|
||||
}
|
||||
|
||||
@@ -287,7 +317,7 @@ public class TrackType {
|
||||
* Define el valor de la propiedad bytesPerSector.
|
||||
*
|
||||
*/
|
||||
public void setBytesPerSector(int value) {
|
||||
public void setBytesPerSector(long value) {
|
||||
this.bytesPerSector = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <sequence>
|
||||
* <element name="VendorID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
@@ -36,7 +36,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </element>
|
||||
* <element name="ProductID">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
|
||||
* <minInclusive value="1"/>
|
||||
* <maxInclusive value="65534"/>
|
||||
* </restriction>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ package generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -28,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language" type="{}LanguagesType" minOccurs="0"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="Pages" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="PageSize" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Scan" type="{}ScanType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
@@ -51,7 +52,8 @@ public class UserManualType {
|
||||
@XmlElement(name = "Language")
|
||||
protected LanguagesType language;
|
||||
@XmlElement(name = "Pages")
|
||||
protected int pages;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long pages;
|
||||
@XmlElement(name = "PageSize")
|
||||
protected String pageSize;
|
||||
@XmlElement(name = "Scan")
|
||||
@@ -85,7 +87,7 @@ public class UserManualType {
|
||||
* Obtiene el valor de la propiedad pages.
|
||||
*
|
||||
*/
|
||||
public int getPages() {
|
||||
public long getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
@@ -93,7 +95,7 @@ public class UserManualType {
|
||||
* Define el valor de la propiedad pages.
|
||||
*
|
||||
*/
|
||||
public void setPages(int value) {
|
||||
public void setPages(long value) {
|
||||
this.pages = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -29,14 +30,14 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </sequence>
|
||||
* <attribute name="TrackNumber" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <minInclusive value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Codec" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="Horizontal" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="Vertical" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* <attribute name="MeanBitrate" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* <attribute name="ThreeD" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
|
||||
* </restriction>
|
||||
@@ -55,13 +56,15 @@ public class VideoTracksType {
|
||||
@XmlElement(name = "Languages")
|
||||
protected LanguagesType languages;
|
||||
@XmlAttribute(name = "TrackNumber", required = true)
|
||||
protected int trackNumber;
|
||||
protected long trackNumber;
|
||||
@XmlAttribute(name = "Codec", required = true)
|
||||
protected String codec;
|
||||
@XmlAttribute(name = "Horizontal", required = true)
|
||||
protected int horizontal;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long horizontal;
|
||||
@XmlAttribute(name = "Vertical", required = true)
|
||||
protected int vertical;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long vertical;
|
||||
@XmlAttribute(name = "MeanBitrate", required = true)
|
||||
protected long meanBitrate;
|
||||
@XmlAttribute(name = "ThreeD", required = true)
|
||||
@@ -95,7 +98,7 @@ public class VideoTracksType {
|
||||
* Obtiene el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public int getTrackNumber() {
|
||||
public long getTrackNumber() {
|
||||
return trackNumber;
|
||||
}
|
||||
|
||||
@@ -103,7 +106,7 @@ public class VideoTracksType {
|
||||
* Define el valor de la propiedad trackNumber.
|
||||
*
|
||||
*/
|
||||
public void setTrackNumber(int value) {
|
||||
public void setTrackNumber(long value) {
|
||||
this.trackNumber = value;
|
||||
}
|
||||
|
||||
@@ -135,7 +138,7 @@ public class VideoTracksType {
|
||||
* Obtiene el valor de la propiedad horizontal.
|
||||
*
|
||||
*/
|
||||
public int getHorizontal() {
|
||||
public long getHorizontal() {
|
||||
return horizontal;
|
||||
}
|
||||
|
||||
@@ -143,7 +146,7 @@ public class VideoTracksType {
|
||||
* Define el valor de la propiedad horizontal.
|
||||
*
|
||||
*/
|
||||
public void setHorizontal(int value) {
|
||||
public void setHorizontal(long value) {
|
||||
this.horizontal = value;
|
||||
}
|
||||
|
||||
@@ -151,7 +154,7 @@ public class VideoTracksType {
|
||||
* Obtiene el valor de la propiedad vertical.
|
||||
*
|
||||
*/
|
||||
public int getVertical() {
|
||||
public long getVertical() {
|
||||
return vertical;
|
||||
}
|
||||
|
||||
@@ -159,7 +162,7 @@ public class VideoTracksType {
|
||||
* Define el valor de la propiedad vertical.
|
||||
*
|
||||
*/
|
||||
public void setVertical(int value) {
|
||||
public void setVertical(long value) {
|
||||
this.vertical = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ package generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -24,8 +25,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="RequestVersion" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="RequestNumber" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="SecuritySectors" type="{}DumpType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -44,9 +45,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class XboxSecuritySectorsType {
|
||||
|
||||
@XmlElement(name = "RequestVersion")
|
||||
protected int requestVersion;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long requestVersion;
|
||||
@XmlElement(name = "RequestNumber")
|
||||
protected int requestNumber;
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long requestNumber;
|
||||
@XmlElement(name = "SecuritySectors", required = true)
|
||||
protected DumpType securitySectors;
|
||||
|
||||
@@ -54,7 +57,7 @@ public class XboxSecuritySectorsType {
|
||||
* Obtiene el valor de la propiedad requestVersion.
|
||||
*
|
||||
*/
|
||||
public int getRequestVersion() {
|
||||
public long getRequestVersion() {
|
||||
return requestVersion;
|
||||
}
|
||||
|
||||
@@ -62,7 +65,7 @@ public class XboxSecuritySectorsType {
|
||||
* Define el valor de la propiedad requestVersion.
|
||||
*
|
||||
*/
|
||||
public void setRequestVersion(int value) {
|
||||
public void setRequestVersion(long value) {
|
||||
this.requestVersion = value;
|
||||
}
|
||||
|
||||
@@ -70,7 +73,7 @@ public class XboxSecuritySectorsType {
|
||||
* Obtiene el valor de la propiedad requestNumber.
|
||||
*
|
||||
*/
|
||||
public int getRequestNumber() {
|
||||
public long getRequestNumber() {
|
||||
return requestNumber;
|
||||
}
|
||||
|
||||
@@ -78,7 +81,7 @@ public class XboxSecuritySectorsType {
|
||||
* Define el valor de la propiedad requestNumber.
|
||||
*
|
||||
*/
|
||||
public void setRequestNumber(int value) {
|
||||
public void setRequestNumber(long value) {
|
||||
this.requestNumber = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.3.1-b171012.0423
|
||||
// Visite <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
||||
// Generado el: 2019.04.22 a las 11:40:52 PM BST
|
||||
// Generado el: 2019.04.22 a las 11:59:16 PM BST
|
||||
//
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user