~ubuntu-branches/ubuntu/natty/java-gnome/natty

« back to all changes in this revision

Viewing changes to src/bindings/org/freedesktop/icons/MimeIcon.java

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume Mazoyer
  • Date: 2011-02-18 17:46:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110218174652-mk7ajkt790es0jwr
Tags: 4.0.19-0ubuntu1
* New upstream release. (LP: #596252) (Forwarded: Debian: 588943)
* debian/control
  - Update dependencies version according to the upstream configure file.
  - Update Standards-Version to 3.9.1.
  - Sync JNI and JAR packages.
* debian/copyright
  - Update copyright to 2011.
* debian/patches/01_take_screenshots.diff
  - Fix patch to make doc screenshots works.
* debian/patches/02_javadoc_workaround.patch
  - Fix javadoc generation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * java-gnome, a UI library for writing GTK and GNOME programs from Java!
 
3
 *
 
4
 * Copyright © 2010 Operational Dynamics Consulting, Pty Ltd and Others
 
5
 *
 
6
 * The code in this file, and the program it is a part of, is made available
 
7
 * to you by its authors as open source software: you can redistribute it
 
8
 * and/or modify it under the terms of the GNU General Public License version
 
9
 * 2 ("GPL") as published by the Free Software Foundation.
 
10
 *
 
11
 * This program 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 GPL for more details.
 
14
 *
 
15
 * You should have received a copy of the GPL along with this program. If not,
 
16
 * see http://www.gnu.org/licenses/. The authors of this program may be
 
17
 * contacted through http://java-gnome.sourceforge.net/.
 
18
 *
 
19
 * Linking this library statically or dynamically with other modules is making
 
20
 * a combined work based on this library. Thus, the terms and conditions of
 
21
 * the GPL cover the whole combination. As a special exception (the
 
22
 * "Claspath Exception"), the copyright holders of this library give you
 
23
 * permission to link this library with independent modules to produce an
 
24
 * executable, regardless of the license terms of these independent modules,
 
25
 * and to copy and distribute the resulting executable under terms of your
 
26
 * choice, provided that you also meet, for each linked independent module,
 
27
 * the terms and conditions of the license of that module. An independent
 
28
 * module is a module which is not derived from or based on this library. If
 
29
 * you modify this library, you may extend the Classpath Exception to your
 
30
 * version of the library, but you are not obligated to do so. If you do not
 
31
 * wish to do so, delete this exception statement from your version.
 
32
 */
 
33
package org.freedesktop.icons;
 
34
 
 
35
/**
 
36
 * Named icons representing MIME types.
 
37
 * 
 
38
 * @author Guillaume Mazoyer
 
39
 * @author Andrew Cowie
 
40
 * @since 4.0.17
 
41
 */
 
42
public class MimeIcon extends Icon
 
43
{
 
44
    protected MimeIcon(String name) {
 
45
        super(name);
 
46
    }
 
47
 
 
48
    public static final Icon APPLICATION_CERTIFICATE = new MimeIcon("application-certificate");
 
49
 
 
50
    public static final Icon APPLICATION_X_EXECUTABLE = new MimeIcon("application-x-executable");
 
51
 
 
52
    public static final Icon AUDIO_X_GENERIC = new MimeIcon("audio-x-generic");
 
53
 
 
54
    public static final Icon FONT_X_GENERIC = new MimeIcon("font-x-generic");
 
55
 
 
56
    public static final Icon IMAGE_X_GENERIC = new MimeIcon("image-x-generic");
 
57
 
 
58
    public static final Icon PACKAGE_X_GENERIC = new MimeIcon("package-x-generic");
 
59
 
 
60
    public static final Icon TEXT_HTML = new MimeIcon("text-html");
 
61
 
 
62
    public static final Icon TEXT_X_GENERIC = new MimeIcon("text-x-generic");
 
63
 
 
64
    public static final Icon TEXT_X_GENERIC_TEMPLATE = new MimeIcon("text-x-generic-template");
 
65
 
 
66
    public static final Icon TEXT_X_PREVIEW = new MimeIcon("text-x-preview");
 
67
 
 
68
    public static final Icon TEXT_X_SCRIPT = new MimeIcon("text-x-script");
 
69
 
 
70
    public static final Icon VIDEO_X_GENERIC = new MimeIcon("video-x-generic");
 
71
 
 
72
    public static final Icon X_OFFICE_ADDRESS_BOOK = new MimeIcon("x-office-address-book");
 
73
 
 
74
    public static final Icon X_OFFICE_CALENDAR = new MimeIcon("x-office-calendar");
 
75
 
 
76
    public static final Icon X_OFFICE_DOCUMENT = new MimeIcon("x-office-document");
 
77
 
 
78
    public static final Icon X_OFFICE_DOCUMENT_TEMPLATE = new MimeIcon("x-office-document-template");
 
79
 
 
80
    public static final Icon X_OFFICE_DRAWING = new MimeIcon("x-office-drawing");
 
81
 
 
82
    public static final Icon X_OFFICE_DRAWING_TEMPLATE = new MimeIcon("x-office-drawing-template");
 
83
 
 
84
    public static final Icon X_OFFICE_PRESENTATION = new MimeIcon("x-office-presentation");
 
85
 
 
86
    public static final Icon X_OFFICE_PRESENTATION_TEMPLATE = new MimeIcon(
 
87
            "x-office-presentation-template");
 
88
 
 
89
    public static final Icon X_OFFICE_SPREADSHEET = new MimeIcon("x-office-spreadsheet");
 
90
 
 
91
    public static final Icon X_OFFICE_SPREADSHEET_TEMPLATE = new MimeIcon(
 
92
            "x-office-spreadsheet-template");
 
93
}