aboutsummaryrefslogtreecommitdiffstats
path: root/netx/javax/jnlp/IntegrationService.java
diff options
context:
space:
mode:
Diffstat (limited to 'netx/javax/jnlp/IntegrationService.java')
-rw-r--r--netx/javax/jnlp/IntegrationService.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/netx/javax/jnlp/IntegrationService.java b/netx/javax/jnlp/IntegrationService.java
new file mode 100644
index 0000000..4184f1c
--- /dev/null
+++ b/netx/javax/jnlp/IntegrationService.java
@@ -0,0 +1,19 @@
+package javax.jnlp;
+
+public interface IntegrationService {
+
+ public boolean hasAssociation(java.lang.String mimeType, java.lang.String[] extensions);
+
+ public boolean hasDesktopShortcut();
+
+ public boolean hasMenuShortcut();
+
+ public boolean removeAssociation(java.lang.String mimeType, java.lang.String[] extensions);
+
+ public boolean removeShortcuts();
+
+ public boolean requestAssociation(java.lang.String mimeType, java.lang.String[] extensions);
+
+ public boolean requestShortcut(boolean onDesktop, boolean inMenu, java.lang.String subMenu);
+
+}