com.coveo.nashorn_modules.Folder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nashorn-commonjs-modules Show documentation
Show all versions of nashorn-commonjs-modules Show documentation
CommonJS modules implementation for Nashorn
package com.coveo.nashorn_modules;
public interface Folder {
public Folder getParent();
public String getPath();
public String getFile(String name);
public Folder getFolder(String name);
}