blob: 87432d39063e82f3c782f74fecf79bd8c2b17b3d [file] [log] [blame]
package org.eclipse.emf.refactor.smells.papyrus.ui;
import org.eclipse.emf.refactor.smells.interfaces.IHighlighting;
import org.eclipse.emf.refactor.smells.papyrus.managers.HighlightManager;
public class PapyrusHighlighting implements IHighlighting {
@Override
public void highlight(Object selection) {
HighlightManager.getInstance().highlight(selection);
}
}