Deprecated API

Deprecated Classes
superwaba.ext.xplat.util.Compression
          Use superwaba.ext.xplat.util.zip.JZlib (for GPL users) or superwaba.ext.xplat.zip.Zlib (for LGPL users). 
waba.io.ResizeStream
          Use waba.io.ResizeRecord instead. 
 

Deprecated Fields
waba.fx.Font.BOLD
          The style parameter is now a boolean. 
waba.ui.MenuBar.CHECKED
          Use the new MenuBar.Item properties instead. 
waba.ui.MenuBar.DISABLED
          Use the new MenuBar.Item properties instead. 
superwaba.ext.xplat.io.http.HttpStream.Options.doNotIssueRequest
          Use doGet instead 
waba.ui.Control.highlightRectsCount
          Set the UIColors.highlightColors to the colors you want to display on the highlight rectangle. 
waba.ui.PenEvent.PEN_MOVE
          Use PEN_DRAG instead. Pen moves are not detectable by touchscreen devices. 
waba.sys.Settings.penless
          Use Settings.keyboardFocusTraversable instead. 
waba.fx.Font.PLAIN
          The style parameter is now a boolean. 
waba.fx.Image.transparentColor
          use transparentPixel instead, or get/setTransparentColor 
waba.ui.MenuBar.UNCHECKED
          Use the new MenuBar.Item properties instead. 
 

Deprecated Methods
waba.util.IntVector.add(int)
          Use addElement instead. 
waba.util.Vector.add(Object)
          Use addElement method instead. 
superwaba.ext.xplat.sql.db2e.db2ex.Db2e.attachNative()
          The native attachment is done by the constructor 
waba.util.Vector.clear()
          Use removeAllElements method instead. 
waba.util.IntVector.clear()
          Use removeAllElements instead. 
superwaba.ext.xplat.game.GameEngine.createTextRenderer(Font, Color, String, int)
          use the version with the zeroPadding argument instead 
waba.util.Vector.del(int)
          Use removeElementAt method instead. 
waba.util.IntVector.del(int)
          Use removeElementAt method instead. 
waba.util.Vector.del(Object)
          Use removeElement method instead. 
waba.util.IntVector.find(int)
          Use indexOf method instead. 
waba.util.IntVector.find(int, int)
          Use indexOf method instead. 
waba.util.Vector.find(Object)
          Use indexOf method instead. 
waba.util.Vector.find(Object, int)
          Use indexOf method instead. 
waba.ui.Grid.getColumnText(int, int)
          Use getCellText instead. 
waba.util.Vector.getCount()
          Use size method instead. 
waba.util.IntVector.getCount()
          Use size method instead. 
waba.ui.Control.getFontMetrics(Font)
          Use font.fm instead. 
waba.ui.MainWindow.getFontMetrics(Font)
          Use font.fm instead 
waba.ui.MenuBar.getItems()
          Use the method getMenuItems instead. 
waba.ui.Grid.getSelectedLine()
          Use getSelectedRow instead. 
waba.util.IntVector.insert(int, int)
          Use insertElementAt method instead. CAUTION: insertElementAt has the parameters in inverted order! 
waba.util.Vector.insert(int, Object)
          Use insertElementAt method instead. CAUTION: insertElementAt has the parameters in inverted order! 
superwaba.ext.palm.io.builtin.Datebook.insertDate(Datebook)
          Use addDate instead. 
waba.ui.MenuBar.isCheckable(int)
          Store a reference to the desired MenuItem and call the isCheckable method. 
waba.ui.MenuBar.isChecked(int)
          Store a reference to the desired MenuItem and change its isChecked property directly. See MenuItem for more details. 
waba.ui.MenuBar.isEnabled(int)
          Store a reference to the desired MenuItem and check the isEnabled property. 
superwaba.ext.xplat.sql.db2e.db2ex.Db2e.isNativeAttached()
          The native attachment is done by the constructor 
waba.util.IntHashtable.saveTo(DataStream)
          This method will be removed in the future. Grab the code and put it in your program. 
waba.ui.MenuBar.setChecked(int, boolean)
          Store a reference to the desired MenuItem and set the isChecked property. 
waba.ui.Grid.setColumnText(int, int, String)
          Use setCellText instead. 
waba.ui.MenuBar.setEnabled(int, boolean)
          Store a reference to the desired MenuItem and set the isEnabled property. 
waba.ui.Button.setGap(int)
          Use Button.commonGap = gap; ... (call button.setRect for all buttons with this gap) ... Button.commonGaps = 0; 
waba.ui.MenuBar.setItems(String[][])
          Don't change the items of a MenuBar. Create a new MenuBar with the new items instead. 
waba.ui.TabPanel.setPanelsBackColor(Color[])
          You may set the back color directly in the class that extends Container, or use getPanel(i).setBackColor(...). 
waba.ui.Grid.setSelectedLine(int)
          Use setSelectedRow instead. 
superwaba.ext.xplat.io.http.HttpStream.setTimeout(int)
          Use the Options.readTimeOut property, passed on the constructor. 
waba.util.IntVector.writeTo(DataStream)
          This method will be removed in the future. Grab the code and put it in your program. 
 

Deprecated Constructors
waba.fx.Color(int)
          Color is now a singleton. Use Color.getColor instead. 
waba.fx.Color(int, int, int)
          Color is now a singleton. Use Color.getColor instead. 
waba.fx.Color(String)
          Color is now a singleton. Use Color.getColor instead. 
waba.fx.Font(String, int, int)
          This class is now a singleton. Please use the Font.getFont method instead. 
waba.fx.FontMetrics(Font)
          Don't use this constructor; access the myFont.fm member instead. 
waba.util.IntHashtable(DataStream)
          This constructor will be removed in the future. Grab the code and put it in your program. 
waba.util.IntVector(DataStream)
          This constructor will be removed in the future. Grab the code and put it in your program. 
waba.ui.MenuBar(String[][])
          Use MenuBar(MenuItem[][]). 
waba.ui.PopupMenu(int, int, String[])
          Use PopupMenu(int x, int y, MenuItem []items) instead. 
superwaba.ext.xplat.game.TextRenderer(Font, Color, Color, String, int)
          use the version with the zeroPadding argument instead