1 19 20 package org.netbeans.modules.java.source.usages; 21 22 import java.io.IOException ; 23 import javax.tools.JavaFileObject; 24 25 29 public interface Analyser { 30 31 public void scan (JavaFileObject file) throws IOException ; 32 33 public void delete (String binaryName) throws IOException ; 34 35 public void store () throws IOException ; 36 37 } 38 | Popular Tags |