File: IconProvider.java

package info (click to toggle)
mac-widgets 0.10.0%2Bsvn416-dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,968 kB
  • ctags: 2,003
  • sloc: java: 9,909; makefile: 13; sh: 12
file content (17 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.explodingpixels.widgets;

import javax.swing.Icon;

/**
 * An interface for provider's of {@link Icon}s.
 */
public interface IconProvider {

    /**
     * Gets the {@link Icon} for this element.
     *
     * @return the {@code Icon} for this element.
     */
    Icon getIcon();

}