public Tooltip unregister(String theControllerName) { Controller<?> c = cp5.getController(theControllerName); if (c == null) { return this; } return unregister(c); }
public Tooltip register(String theControllerName, String theText) { Controller<?> c = cp5.getController(theControllerName); if (c == null) { return this; } map.put(c, theText); c.registerProperty("setTooltipEnabled", "isTooltipEnabled"); return this; }
public Controller<?> getController(String theController) { return cp5.getController(theController); }
/** @exclude */ @Deprecated public Controller<?> controller(String theController) { return cp5.getController(theController); }
public ControlBroadcaster plug( Object theObject, final String theControllerName, final String theTargetMethod) { plug(theObject, cp5.getController(theControllerName), theTargetMethod); return this; }