1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.cycling74.max; import java.util.Set; /** * MaxContext holder. Does not do anything usefull on pdj, yet. */ public class MaxContext { public Set getAllObject() { return null; } MaxObject getMaxObject(String name) { return null; } String getMxjVersion() { return MaxSystem.MXJ_VERSION; } }