blob: 27eac5357f7b6d3f583d007f4b0a71c0413f5b90 [file] [log] [blame]
package org.eclipse.gmf.tooling.runtime.ocl.tracker;
public interface OclTrackerFactory {
public OclTracker createOclTracker(String expressionBody, boolean cached);
public Type getImplementationType();
public static enum Type {
ANY, DEFAULT_GMFT, IMPACT_ANALYZER
}
}