1 19 20 package org.netbeans.modules.retouche.source.usages; 21 22 import java.io.IOException ; 23 import org.openide.filesystems.FileObject; 24 25 34 public interface Analyser { 35 36 public void scan (FileObject file) throws IOException ; 38 39 public void delete (String binaryName) throws IOException ; 40 41 public void store () throws IOException ; 42 43 } 44 | Popular Tags |