mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 19:05:34 +01:00
25 lines
337 B
Java
25 lines
337 B
Java
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;
|
|
}
|
|
} |