115116117118119120121122123124
public static class JumpToModelFromTest extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToModelFromTest(); } catch (Exception e) { notification(e.getMessage()); } }
131132133134135136137138139140
public static class JumpToComponent extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToComponent(); } catch (Exception e) { notification(e.getMessage()); } }
147148149150151152153154155156
public static class JumpToBehavior extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToBehavior(); } catch (Exception e) { notification(e.getMessage()); } }
163164165166167168169170171172
public static class JumpToHelper extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToHelper(); } catch (Exception e) { notification(e.getMessage()); } }
179180181182183184185186187188
public static class JumpToFixture extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToFixture(); } catch (Exception e) { notification(e.getMessage()); } }
195196197198199200201202203204
public static class JumpToTest extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToTest(); } catch (Exception e) { notification(e.getMessage()); } }