All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.link.ImportManager Maven / Gradle / Ivy

package org.snapscript.core.link;

import java.util.concurrent.Future;

import org.snapscript.core.Entity;
import org.snapscript.core.module.Module;
import org.snapscript.core.type.Type;

public interface ImportManager {
   void addImport(String prefix);
   void addImport(String type, String alias);
   void addImport(Type type, String alias);
   void addImports(Module module);
   Future getImport(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy