aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/MaxPatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/cycling74/max/MaxPatcher.java')
-rw-r--r--src/java/com/cycling74/max/MaxPatcher.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/java/com/cycling74/max/MaxPatcher.java b/src/java/com/cycling74/max/MaxPatcher.java
new file mode 100644
index 0000000..b2fb778
--- /dev/null
+++ b/src/java/com/cycling74/max/MaxPatcher.java
@@ -0,0 +1,17 @@
+package com.cycling74.max;
+
+/**
+ * Java object that encapsulate the pd patch. Minimal support on pdj; only
+ * getPath() is supported.
+ */
+public class MaxPatcher {
+ String patchPath;
+
+ /**
+ * Returns the absolute path of the associated patch.
+ * @return the absolute patch path
+ */
+ public String getPath() {
+ return patchPath;
+ }
+}