aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/MaxPatcher.java
blob: b2fb778e7ad27c5e26d0119014cb378b50969e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}