File: MacIcons.java

package info (click to toggle)
mac-widgets 0.9.5%2Bsvn369-dfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,920 kB
  • sloc: java: 8,318; makefile: 13; sh: 12
file content (15 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.explodingpixels.macwidgets;

import javax.swing.ImageIcon;

public class MacIcons {

    public static ImageIcon PLUS =
            new ImageIcon(MacIcons.class.getResource("/com/explodingpixels/macwidgets/images/plus.png"));

    public static ImageIcon MINUS =
            new ImageIcon(MacIcons.class.getResource("/com/explodingpixels/macwidgets/images/minus.png"));

    public static ImageIcon GEAR =
            new ImageIcon(MacIcons.class.getResource("/com/explodingpixels/macwidgets/images/gear.png"));
}