![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.core.ModelScope 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;
public class ModelScope implements Scope {
private final Module module;
private final State state;
private final Model model;
public ModelScope(Model model, Module module) {
this.state = new MapState(model);
this.module = module;
this.model = model;
}
@Override
public Scope getInner() {
return new CompoundScope(model, this, this);
}
@Override
public Scope getOuter() {
return this;
}
@Override
public Model getModel() {
return model;
}
@Override
public State getState() {
return state;
}
@Override
public Type getHandle() {
return null;
}
@Override
public Type getType() {
return null;
}
@Override
public Module getModule() {
return module;
}
@Override
public String toString() {
return String.valueOf(state);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy