swingx
Version 2005-08-19

Deprecated API


Contents
Deprecated Fields
org.jdesktop.swingx.decorator.Highlighter.ledgerBackground
          set the component's background color instead! 
org.jdesktop.swingx.decorator.Highlighter.notePadBackground
          set the component's background color instead! 
 

Deprecated Methods
org.jdesktop.swingx.JXTitledPanel.addLeftDecoration(JComponent)
           
org.jdesktop.swingx.JXTitledPanel.addRightDecoration(JComponent)
           
org.jdesktop.swingx.decorator.Highlighter.computeSelectedBackground(Color)
          this is no longer used by this implementation 
org.jdesktop.swingx.decorator.Highlighter.computeSelectedForeground(Color)
          this method is longer called by this implementation 
org.jdesktop.swingx.decorator.ConditionalHighlighter.computeSelectedForeground(Color)
           
org.jdesktop.swingx.JXTable.configureViewportBackground()
          no longer used - replaced by fillsViewportHeight 
org.jdesktop.swingx.JXPanel.getGradientPaint()
          See setGradientPaint 
org.jdesktop.swingx.JXErrorDialog.getReporter()
          Use getDefaultErrorReporter instead 
org.jdesktop.swingx.decorator.Sorter.interpose(FilterPipeline, ComponentAdapter, Sorter)
          - use filterPipeline.setSorter instead 
org.jdesktop.swingx.JXPanel.isDrawGradient()
          See setGradientPaint 
org.jdesktop.swingx.JXPanel.isGradientTrackHeight()
          See setGradientPaint 
org.jdesktop.swingx.JXPanel.isGradientTrackWidth()
          See setGradientPaint 
org.jdesktop.swingx.JXPanel.setDrawGradient(boolean)
          See setGradientPaint 
org.jdesktop.swingx.JXPanel.setGradientPaint(GradientPaint)
          To specify a gradient for the panel, use the #setBackgroundPainter method, along with a Painter, like this:

      BasicGradientPainter gradient = 
          new BasicGradientPainter(new GradientPaint(
              new Point2D.Double(0,0),
              Color.WHITE, 
              new Point2D.Double(1,0), 
              UIManager.getColor("control")));
      panel.setBackgroundPainter(gradient);
  
There are several predefined gradients that may also be used. For example:

      BasicGradientPainter gradient = 
          new BasicGradientPainter(BasicGradientPainter.WHITE_TO_CONTROL_HORIZONTAL);
      panel.setBackgroundPainter(gradient);
  
 
org.jdesktop.swingx.JXPanel.setGradientTrackHeight(boolean)
          See setGradientPaint 
org.jdesktop.swingx.JXPanel.setGradientTrackWidth(boolean)
          See setGradientPaint 
org.jdesktop.swingx.JXErrorDialog.setReporter(ErrorReporter)
          Use setDefaultErrorReporter instead 
org.jdesktop.swingx.decorator.Filter.translateFromPreviousFilter(int)
           
org.jdesktop.swingx.decorator.Filter.translateToPreviousFilter(int)
           
 


swingx
Version 2005-08-19