ch.obermuhlner.scriptengine.java.name.FixNameStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-scriptengine Show documentation
Show all versions of java-scriptengine Show documentation
Java script engine for Java as a scripting language.
package ch.obermuhlner.scriptengine.java.name;
public class FixNameStrategy implements NameStrategy {
private final String fullName;
public FixNameStrategy(String fullName) {
this.fullName = fullName;
}
@Override
public String getFullName(String script) {
return fullName;
}
}