org.snapscript.core.Module Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
import java.io.InputStream;
import java.util.List;
import org.snapscript.core.annotation.Annotation;
import org.snapscript.core.function.Function;
import org.snapscript.core.link.ImportManager;
public interface Module extends Any{
Scope getScope();
Context getContext();
ImportManager getManager();
Type getType(Class type);
Type getType(String name);
Type addType(String name);
Module getModule(String module);
InputStream getResource(String path);
List getAnnotations();
List getFunctions();
List getTypes();
String getName();
Path getPath();
int getOrder();
}