blob: f229460b3e748688ef94002a165a72931dc2c0b7 [file] [log] [blame]
package org.eclipse.e4.core.internal.tests.contexts;
import org.eclipse.e4.core.contexts.ContextFunction;
import org.eclipse.e4.core.contexts.IEclipseContext;
public class ContextFunctionHigh extends ContextFunction {
@Override
public Object compute(IEclipseContext context) {
return "High";
}
}