1/*
2 * Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package com.sun.imageio.plugins.gif;
27
28import java.util.ListResourceBundle;
29
30public class GIFStreamMetadataFormatResources extends ListResourceBundle {
31
32    public GIFStreamMetadataFormatResources() {}
33
34    protected Object[][] getContents() {
35        return new Object[][] {
36
37        // Node name, followed by description
38        { "Version", "The file version, either 87a or 89a" },
39        { "LogicalScreenDescriptor",
40          "The logical screen descriptor, except for the global color table" },
41        { "GlobalColorTable", "The global color table" },
42        { "ColorTableEntry", "A global color table entry" },
43
44        // Node name + "/" + AttributeName, followed by description
45        { "Version/value",
46          "The version string" },
47        { "LogicalScreenDescriptor/logicalScreenWidth",
48          "The width in pixels of the whole picture" },
49        { "LogicalScreenDescriptor/logicalScreenHeight",
50          "The height in pixels of the whole picture" },
51        { "LogicalScreenDescriptor/colorResolution",
52          "The number of bits of color resolution, beteen 1 and 8" },
53        { "LogicalScreenDescriptor/pixelAspectRatio",
54          "If 0, indicates square pixels, else W/H = (value + 15)/64" },
55        { "GlobalColorTable/sizeOfGlobalColorTable",
56          "The number of entries in the global color table" },
57        { "GlobalColorTable/backgroundColorIndex",
58          "The index of the color table entry to be used as a background" },
59        { "GlobalColorTable/sortFlag",
60          "True if the global color table is sorted by frequency" },
61        { "ColorTableEntry/index", "The index of the color table entry" },
62        { "ColorTableEntry/red",
63          "The red value for the color table entry" },
64        { "ColorTableEntry/green",
65          "The green value for the color table entry" },
66        { "ColorTableEntry/blue",
67          "The blue value for the color table entry" },
68
69        };
70    }
71}
72