/** * @param theGroup ControlGroup * @param theTab Tab * @param theControlWindow ControlWindow * @return ControllerGroup */ public final T moveTo(ControllerGroup<?> theGroup, Tab theTab, ControlWindow theControlWindow) { if (theGroup != null) { setGroup(theGroup); return me; } if (theControlWindow == null) { theControlWindow = cp5.controlWindow; } setTab(theControlWindow, theTab.getName()); return me; }
public final T moveTo(Tab theTab) { moveTo(null, theTab, theTab.getWindow()); return me; }