package no.uio.ifi.refaktor.analyze.matchers; import org.eclipse.jdt.core.dom.SwitchStatement; public class SwitchStatementMatcher implements InstanceOfMatcher { @Override public boolean matches(Object o) { return o instanceof SwitchStatement; } }