1 20 21 package org.jdesktop.jdic.desktop.internal; 22 23 import java.io.File ; 24 25 26 30 public interface LaunchService { 31 38 public void open(File file) throws LaunchFailedException; 39 40 47 public boolean isEditable(File file); 48 49 56 public void edit(File file) throws LaunchFailedException; 57 58 64 public boolean isPrintable(File file); 65 66 72 public void print(File file) throws LaunchFailedException; 73 74 83 public File resolveLinkFile(File file); 84 } 85 | Popular Tags |