File: SourceListSelectionListener.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 (14 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.explodingpixels.macwidgets;

/**
 * An interface for listening to {@link SourceListItem} selections.
 */
public interface SourceListSelectionListener {

    /**
     * Called when a {@link SourceListItem} is selected in a {@link SourceList}.
     * @param item the item that was selected.
     */
    void sourceListItemSelected(SourceListItem item);

}