author | serb |
Wed, 29 Nov 2017 15:11:37 -0800 | |
changeset 48264 | efda6932a433 |
parent 47216 | 71c04702a3d5 |
child 50358 | 1ba28f0dbc33 |
permissions | -rw-r--r-- |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
1 |
<!doctype html> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
2 |
<html lang="en"> |
2 | 3 |
<head> |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
4 |
<meta charset="utf-8"/> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
5 |
<title>WBMP Metadata Format Specification</title> |
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
6 |
</head> |
2 | 7 |
<!-- |
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
8 |
Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. |
2 | 9 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
10 |
||
11 |
This code is free software; you can redistribute it and/or modify it |
|
12 |
under the terms of the GNU General Public License version 2 only, as |
|
5506 | 13 |
published by the Free Software Foundation. Oracle designates this |
2 | 14 |
particular file as subject to the "Classpath" exception as provided |
5506 | 15 |
by Oracle in the LICENSE file that accompanied this code. |
2 | 16 |
|
17 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
18 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
19 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
20 |
version 2 for more details (a copy is included in the LICENSE file that |
|
21 |
accompanied this code). |
|
22 |
||
23 |
You should have received a copy of the GNU General Public License version |
|
24 |
2 along with this work; if not, write to the Free Software Foundation, |
|
25 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
26 |
||
5551
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
27 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
28 |
or visit www.oracle.com if you need additional information or have any |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
29 |
questions. |
2 | 30 |
--> |
31 |
||
32 |
<body> |
|
48264
efda6932a433
8182410: missing 'title' in api/javax/swing/plaf/synth/doc-files/componentProperties.html
serb
parents:
47216
diff
changeset
|
33 |
<h1>WBMP Metadata Format Specification</h1> |
2 | 34 |
|
35 |
The XML schema for the native image metadata format is as follows: |
|
36 |
||
37 |
<pre> |
|
38 |
<?xml version="1.0" encoding="UTF-8"?> |
|
39 |
<!-- Schema for WBMP native image metadata format. --> |
|
40 |
||
41 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
|
42 |
xmlns="http://javax.imageio.plugins" |
|
43 |
targetNamespace="http://javax.imageio.plugins"> |
|
44 |
||
45 |
<!-- WBMP Schema 1.0 root element. --> |
|
46 |
<xsd:element name="javax_imageio_wbmp_1.0"> |
|
47 |
<xsd:sequence> |
|
48 |
||
49 |
<!-- WBMP image type --> |
|
50 |
<xsd:element name="WBMPType" type="xsd:unsignedInt"/> |
|
51 |
||
52 |
<!-- Bitmap width --> |
|
53 |
<xsd:element name="Width" type="xsd:unsignedInt"/> |
|
54 |
||
55 |
<!-- Bitmap height --> |
|
56 |
<xsd:element name="Height" type="xsd:unsignedInt"/> |
|
57 |
||
58 |
</xsd:sequence> |
|
59 |
</xsd:element> <!-- wbmp_image_1.0 --> |
|
60 |
||
61 |
</xsd:schema> |
|
62 |
</pre> |
|
63 |
||
64 |
@since 1.5 |
|
65 |
||
66 |
</body> |