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

processing.app.SketchReference Maven / Gradle / Ivy

package processing.app;

import java.io.File;


public class SketchReference {
  String name;
  File pde;


  public SketchReference(String name, File pde) {
    this.name = name;
    this.pde = pde;
  }


  public String getPath() {
    return pde.getAbsolutePath();
  }


  public String toString() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy