File: MacBadgeContentProvider.java

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

public interface MacBadgeContentProvider {

	/**
	 * Returns the string value of what should be displayed in the badge area
	 * @return text to display
	 */
    String getBadgeValue();

}