![JAR search and dependency download from the Maven repository](/logo.png)
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-all Show documentation
Show all versions of snap-all 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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy