/[classpath]/classpath/javax/swing/plaf/basic/BasicSplitPaneUI.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/basic/BasicSplitPaneUI.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by tromey, Tue Aug 17 03:05:41 2004 UTC revision 1.5 by mkoch, Fri Oct 22 08:22:35 2004 UTC
# Line 846  public class BasicSplitPaneUI extends Sp Line 846  public class BasicSplitPaneUI extends Sp
846    /** The JSplitPane's focus handler. */    /** The JSplitPane's focus handler. */
847    protected FocusListener focusListener;    protected FocusListener focusListener;
848    
849    /** Deprecated. The handler for down and right key presses. */    /** @deprecated The handler for down and right key presses. */
850    protected ActionListener keyboardDownRightListener;    protected ActionListener keyboardDownRightListener;
851    
852    /** Deprecated. The handler for end key presses. */    /** @deprecated The handler for end key presses. */
853    protected ActionListener keyboardEndListener;    protected ActionListener keyboardEndListener;
854    
855    /** Deprecated. The handler for home key presses. */    /** @deprecated The handler for home key presses. */
856    protected ActionListener keyboardHomeListener;    protected ActionListener keyboardHomeListener;
857    
858    /** Deprecated. The handler for toggling resizes. */    /** @deprecated The handler for toggling resizes. */
859    protected ActionListener keyboardResizeToggleListener;    protected ActionListener keyboardResizeToggleListener;
860    
861    /** Deprecated. The handler for up and left key presses. */    /** @deprecated The handler for up and left key presses. */
862    protected ActionListener keyboardUpLeftListener;    protected ActionListener keyboardUpLeftListener;
863    
864    /** The JSplitPane's current layout manager. */    /** The JSplitPane's current layout manager. */
865    protected BasicHorizontalLayoutManager layoutManager;    protected BasicHorizontalLayoutManager layoutManager;
866    
867    /** Deprecated. The divider resize toggle key. */    /** @deprecated The divider resize toggle key. */
868    protected KeyStroke dividerResizeToggleKey;    protected KeyStroke dividerResizeToggleKey;
869    
870    /** Deprecated. The down key. */    /** @deprecated The down key. */
871    protected KeyStroke downKey;    protected KeyStroke downKey;
872    
873    /** Deprecated. The end key. */    /** @deprecated The end key. */
874    protected KeyStroke endKey;    protected KeyStroke endKey;
875    
876    /** Deprecated. The home key. */    /** @deprecated The home key. */
877    protected KeyStroke homeKey;    protected KeyStroke homeKey;
878    
879    /** Deprecated. The left key. */    /** @deprecated The left key. */
880    protected KeyStroke leftKey;    protected KeyStroke leftKey;
881    
882    /** Deprecated. The right key. */    /** @deprecated The right key. */
883    protected KeyStroke rightKey;    protected KeyStroke rightKey;
884    
885    /** Deprecated. The up key. */    /** @deprecated The up key. */
886    protected KeyStroke upKey;    protected KeyStroke upKey;
887    
888    /** Set to true when dragging heavy weight components. */    /** Set to true when dragging heavy weight components. */
# Line 1043  public class BasicSplitPaneUI extends Sp Line 1043  public class BasicSplitPaneUI extends Sp
1043    }    }
1044    
1045    /**    /**
1046     * Deprecated. This method creates a new ActionListener for up and left key     * This method creates a new ActionListener for up and left key presses.
    * presses.  
1047     *     *
1048     * @return A new ActionListener for up and left keys.     * @return A new ActionListener for up and left keys.
1049       *
1050       * @deprecated 1.3
1051     */     */
1052    protected ActionListener createKeyboardUpLeftListener()    protected ActionListener createKeyboardUpLeftListener()
1053    {    {
# Line 1054  public class BasicSplitPaneUI extends Sp Line 1055  public class BasicSplitPaneUI extends Sp
1055    }    }
1056    
1057    /**    /**
1058     * Deprecated. This method creates a new ActionListener for down and right     * This method creates a new ActionListener for down and right key presses.
    * key presses.  
1059     *     *
1060     * @return A new ActionListener for down and right keys.     * @return A new ActionListener for down and right keys.
1061       *
1062       * @deprecated 1.3
1063     */     */
1064    protected ActionListener createKeyboardDownRightListener()    protected ActionListener createKeyboardDownRightListener()
1065    {    {
# Line 1065  public class BasicSplitPaneUI extends Sp Line 1067  public class BasicSplitPaneUI extends Sp
1067    }    }
1068    
1069    /**    /**
1070     * Deprecated. This method creates a new ActionListener for home key     * This method creates a new ActionListener for home key presses.
    * presses.  
1071     *     *
1072     * @return A new ActionListener for home keys.     * @return A new ActionListener for home keys.
1073       *
1074       * @deprecated
1075     */     */
1076    protected ActionListener createKeyboardHomeListener()    protected ActionListener createKeyboardHomeListener()
1077    {    {
# Line 1076  public class BasicSplitPaneUI extends Sp Line 1079  public class BasicSplitPaneUI extends Sp
1079    }    }
1080    
1081    /**    /**
1082     * Deprecated. This method creates a new ActionListener for end key presses.     * This method creates a new ActionListener for end key presses.i
1083     *     *
1084     * @return A new ActionListener for end keys.     * @return A new ActionListener for end keys.
1085       *
1086       * @deprecated 1.3
1087     */     */
1088    protected ActionListener createKeyboardEndListener()    protected ActionListener createKeyboardEndListener()
1089    {    {
# Line 1086  public class BasicSplitPaneUI extends Sp Line 1091  public class BasicSplitPaneUI extends Sp
1091    }    }
1092    
1093    /**    /**
1094     * Depcreated. This method creates a new ActionListener for resize toggle     * This method creates a new ActionListener for resize toggle key events.
    * key events.  
1095     *     *
1096     * @return A new ActionListener for resize toggle keys.     * @return A new ActionListener for resize toggle keys.
1097       *
1098       * @deprecated 1.3
1099     */     */
1100    protected ActionListener createKeyboardResizeToggleListener()    protected ActionListener createKeyboardResizeToggleListener()
1101    {    {
# Line 1483  public class BasicSplitPaneUI extends Sp Line 1489  public class BasicSplitPaneUI extends Sp
1489    }    }
1490    
1491    /**    /**
1492     * Deprecated. This method returns the width of one of the sides of the     * This method returns the width of one of the sides of the divider's border.
    * divider's border.  
1493     *     *
1494     * @return The width of one side of the divider's border.     * @return The width of one side of the divider's border.
1495       *
1496       * @deprecated 1.3
1497     */     */
1498    protected int getDividerBorderSize()    protected int getDividerBorderSize()
1499    {    {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26