19202122232425262728
public static class SmartJump extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jump(); } catch (Exception e) { notification(e.getMessage()); } }
35363738394041424344
public static class HorizontalSmartJump extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event, OpenType.HORIZONTAL).jump(); } catch (Exception e) { notification(e.getMessage()); } }
51525354555657585960
public static class VerticalSmartJump extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event, OpenType.VERTICAL).jump(); } catch (Exception e) { notification(e.getMessage()); } }
67686970717273747576
public static class JumpToControllerFromView extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToControllerFromView(); } catch (Exception e) { notification(e.getMessage()); } }
83848586878889909192
public static class JumpToControllerFromTest extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToControllerFromTest(); } catch (Exception e) { notification(e.getMessage()); } }
99100101102103104105106107108
public static class JumpToModelFromFixture extends AnAction { @Override public void actionPerformed(AnActionEvent event) { try { new SmartJumper(event).jumpToModelFromFixture(); } catch (Exception e) { notification(e.getMessage()); } }
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()); } }