コード例 #1
0
ファイル: Tooltip.java プロジェクト: poqudrof/Skatolo
 public Tooltip unregister(String theControllerName) {
   Controller<?> c = skatolo.getController(theControllerName);
   if (c == null) {
     return this;
   }
   return unregister(c);
 }
コード例 #2
0
ファイル: Tooltip.java プロジェクト: poqudrof/Skatolo
 public Tooltip register(String theControllerName, String theText) {
   Controller<?> c = skatolo.getController(theControllerName);
   if (c == null) {
     return this;
   }
   map.put(c, theText);
   c.registerProperty("setTooltipEnabled", "isTooltipEnabled");
   return this;
 }
コード例 #3
0
ファイル: Tooltip.java プロジェクト: poqudrof/Skatolo
 /**
  * @see skatolo.Tooltip#setWidth(int)
  * @param theHeight
  * @return Tooltip
  */
 public Tooltip setHeight(int theHeight) {
   Skatolo.logger().warning("Tooltip.setHeight is disabled with this version");
   height = theHeight;
   return this;
 }