net.thevpc.nuts.toolbox.nsh.jshell.parser.AbstractContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nsh Show documentation
Show all versions of nsh Show documentation
Nuts bash shell companion
package net.thevpc.nuts.toolbox.nsh.jshell.parser;
public abstract class AbstractContext implements Context {
protected final JShellParser reader;
public AbstractContext(JShellParser reader) {
this.reader = reader;
}
}