예제 #1
0
 public Tooltip unregister(String theControllerName) {
   Controller<?> c = cp5.getController(theControllerName);
   if (c == null) {
     return this;
   }
   return unregister(c);
 }
예제 #2
0
 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;
 }
예제 #3
0
 public Controller<?> getController(String theController) {
   return cp5.getController(theController);
 }
예제 #4
0
 /** @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;
 }