Deprecated API


Contents
Deprecated Interfaces
org.cobogw.gwt.user.client.ui.RatingListener
          Use the following handlers: For RatingListener.onSelect(Rating, int) use ValueChangeHandler. For RatingListener.onHover(Rating, int) use MouseOverHandler and MouseOutHandler. No new Handler was introduced to replace the onHover method, instead it was implemented using 2 native mouse event handlers. This was just a design decision to limit the number of handlers. Event listener interface for Rating widget events. 
 

Deprecated Fields
org.cobogw.gwt.user.client.CSS.V.CURSOR.HAND
          Microsoft specific, required for IE 5 and IE 5.5, but both browsers are not supported by GWT. Use CSS.V.CURSOR.POINTER which is the equivalent of hand and works in all browsers. 
 

Deprecated Methods
org.cobogw.gwt.user.client.ui.Rating.addRatingListerner(RatingListener)
          Use addValueChangeHandler instead 
org.cobogw.gwt.user.client.ui.VerticalTabBar.addTabListener(TabListener)
          Use VerticalTabBar.addBeforeSelectionHandler(com.google.gwt.event.logical.shared.BeforeSelectionHandler) and {#link #addSelectionHandler} instead 
org.cobogw.gwt.user.client.ui.VerticalTabPanel.addTabListener(TabListener)
          Use addBeforeSelectionHandler(com.google.gwt.event.logical.shared.BeforeSelectionHandler) and addSelectionHandler(com.google.gwt.event.logical.shared.SelectionHandler) instead 
org.cobogw.gwt.user.client.ui.Rating.getRating()
          Use Rating.getValue(). Returns the current rating. 
org.cobogw.gwt.user.client.ui.VerticalTabPanel.onBeforeTabSelected(SourcesTabEvents, int)
          Use BeforeSelectionHandler.onBeforeSelection(com.google.gwt.event.logical.shared.BeforeSelectionEvent) instead 
org.cobogw.gwt.user.client.ui.VerticalTabBar.onClick(Widget)
          add a BeforeSelectionHandler instead. Alternatively, if you need to access to the individual tabs, add a click handler to each VerticalTabBar.Tab element instead. 
org.cobogw.gwt.user.client.ui.RatingListener.onHover(Rating, int)
           
org.cobogw.gwt.user.client.ui.VerticalTabBar.onKeyDown(Widget, char, int)
          add a key down handler to the individual VerticalTabBar.Tab objects instead. 
org.cobogw.gwt.user.client.ui.VerticalTabBar.onKeyPress(Widget, char, int)
          this method has been doing nothing for the entire last release, if what you wanted to do was to listen to key press events on tabs, add the key press handler to the individual tab wrappers instead. 
org.cobogw.gwt.user.client.ui.VerticalTabBar.onKeyUp(Widget, char, int)
          this method has been doing nothing for the entire last release, if what you wanted to do was to listen to key up events on tabs, add the key up handler to the individual tab wrappers instead. 
org.cobogw.gwt.user.client.ui.RatingListener.onSelect(Rating, int)
           
org.cobogw.gwt.user.client.ui.VerticalTabPanel.onTabSelected(SourcesTabEvents, int)
          Use SelectionHandler.onSelection(com.google.gwt.event.logical.shared.SelectionEvent) instead 
org.cobogw.gwt.user.client.ui.Rating.removeRatingListerner(RatingListener)
          Use the HandlerRegistration.removeHandler() method on the object returned by #addChangeHandler instead 
org.cobogw.gwt.user.client.ui.VerticalTabBar.removeTabListener(TabListener)
          Instead use the HandlerRegistration.removeHandler() call on the object returned by an add*Handler method 
org.cobogw.gwt.user.client.ui.VerticalTabPanel.removeTabListener(TabListener)
          Use the HandlerRegistration.removeHandler() method on the object returned by and add*Handler method instead 
org.cobogw.gwt.user.client.ui.Button.setAccessKey(char)
          Unfortunately the attribute accessKey only works on certain HTML elements. It's not supported on div elements as used in this implementation. Therefore setting an access key has no effect. This method has been added to provide interface compatibility with the Button class and made deprecated to indicate it should not be used. 
org.cobogw.gwt.user.client.ui.Rating.setRating(int)
          Use Rating.setValue(Integer) 
org.cobogw.gwt.user.client.ui.Link.setTarget(String)
          The method Link.setExternalLink(boolean) provides a preferred technique to make links open in new windows.

Sets the target attribute. 

 

Deprecated Constructors
org.cobogw.gwt.user.client.ui.Button(String, ClickListener)
           
 



Copyright © 2007-2009 Hilbrand Bouwkamp. All Rights Reserved.