source: trunk/icedtea-web/netx/javax/jnlp/IntegrationService.java

Last change on this file was 348, checked in by dmik, 13 years ago

vendor: Add icedtea-web v1.1.2 to current.

File size: 569 bytes
Line 
1package javax.jnlp;
2
3public interface IntegrationService {
4
5 public boolean hasAssociation(java.lang.String mimeType, java.lang.String[] extensions);
6
7 public boolean hasDesktopShortcut();
8
9 public boolean hasMenuShortcut();
10
11 public boolean removeAssociation(java.lang.String mimeType, java.lang.String[] extensions);
12
13 public boolean removeShortcuts();
14
15 public boolean requestAssociation(java.lang.String mimeType, java.lang.String[] extensions);
16
17 public boolean requestShortcut(boolean onDesktop, boolean inMenu, java.lang.String subMenu);
18
19}
Note: See TracBrowser for help on using the repository browser.