All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coveo.nashorn_modules.AbstractFolder Maven / Gradle / Ivy

package com.coveo.nashorn_modules;

public abstract class AbstractFolder implements Folder {
  private Folder parent;
  private String path;

  public Folder getParent() {
    return parent;
  }

  public String getPath() {
    return path;
  }

  protected AbstractFolder(Folder parent, String path) {
    this.parent = parent;
    this.path = path;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy