Index: javax/swing/InternalFrameFocusTraversalPolicy.java =================================================================== RCS file: javax/swing/InternalFrameFocusTraversalPolicy.java diff -N javax/swing/InternalFrameFocusTraversalPolicy.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ javax/swing/InternalFrameFocusTraversalPolicy.java 24 Dec 2004 11:42:16 -0000 @@ -0,0 +1,55 @@ +/* InternalFrameFocusTraversalPolicy.java -- + Copyright (C) 2004 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + + +package javax.swing; + +import java.awt.Component; +import java.awt.FocusTraversalPolicy; + +/** + * @author Michael Koch + * + * @since 1.4 + */ +public abstract class InternalFrameFocusTraversalPolicy extends FocusTraversalPolicy +{ + public Component getInitialComponent(JInternalFrame frame) + { + return getDefaultComponent(frame); + } +} Index: Makefile.am =================================================================== RCS file: /cvs/gcc/gcc/libjava/Makefile.am,v retrieving revision 1.361.2.64 diff -u -r1.361.2.64 Makefile.am --- Makefile.am 22 Dec 2004 22:44:14 -0000 1.361.2.64 +++ Makefile.am 24 Dec 2004 11:42:18 -0000 @@ -1541,6 +1541,7 @@ javax/swing/Icon.java \ javax/swing/ImageIcon.java \ javax/swing/InputMap.java \ +javax/swing/InternalFrameFocusTraversalPolicy.java \ javax/swing/JApplet.java \ javax/swing/JButton.java \ javax/swing/JCheckBox.java \ Index: Makefile.in =================================================================== RCS file: /cvs/gcc/gcc/libjava/Makefile.in,v retrieving revision 1.385.2.64 diff -u -r1.385.2.64 Makefile.in --- Makefile.in 22 Dec 2004 22:44:14 -0000 1.385.2.64 +++ Makefile.in 24 Dec 2004 11:42:21 -0000 @@ -1137,6 +1137,7 @@ javax/swing/Icon.java \ javax/swing/ImageIcon.java \ javax/swing/InputMap.java \ +javax/swing/InternalFrameFocusTraversalPolicy.java \ javax/swing/JApplet.java \ javax/swing/JButton.java \ javax/swing/JCheckBox.java \ @@ -3338,7 +3339,8 @@ javax/swing/DefaultButtonModel.lo javax/swing/DefaultCellRenderer.lo \ javax/swing/DefaultListModel.lo \ javax/swing/DefaultListSelectionModel.lo javax/swing/Icon.lo \ -javax/swing/ImageIcon.lo javax/swing/InputMap.lo javax/swing/JApplet.lo \ +javax/swing/ImageIcon.lo javax/swing/InputMap.lo \ +javax/swing/InternalFrameFocusTraversalPolicy.lo javax/swing/JApplet.lo \ javax/swing/JButton.lo javax/swing/JCheckBox.lo \ javax/swing/JComponent.lo javax/swing/JDialog.lo \ javax/swing/JEditorPane.lo javax/swing/JFormattedTextField.lo \ @@ -5360,12 +5362,14 @@ .deps/javax/swing/DesktopManager.P .deps/javax/swing/FocusManager.P \ .deps/javax/swing/GrayFilter.P .deps/javax/swing/Icon.P \ .deps/javax/swing/ImageIcon.P .deps/javax/swing/InputMap.P \ -.deps/javax/swing/InputVerifier.P .deps/javax/swing/JApplet.P \ -.deps/javax/swing/JButton.P .deps/javax/swing/JCheckBox.P \ -.deps/javax/swing/JCheckBoxMenuItem.P .deps/javax/swing/JColorChooser.P \ -.deps/javax/swing/JComboBox.P .deps/javax/swing/JComponent.P \ -.deps/javax/swing/JDesktopPane.P .deps/javax/swing/JDialog.P \ -.deps/javax/swing/JEditorPane.P .deps/javax/swing/JFileChooser.P \ +.deps/javax/swing/InputVerifier.P \ +.deps/javax/swing/InternalFrameFocusTraversalPolicy.P \ +.deps/javax/swing/JApplet.P .deps/javax/swing/JButton.P \ +.deps/javax/swing/JCheckBox.P .deps/javax/swing/JCheckBoxMenuItem.P \ +.deps/javax/swing/JColorChooser.P .deps/javax/swing/JComboBox.P \ +.deps/javax/swing/JComponent.P .deps/javax/swing/JDesktopPane.P \ +.deps/javax/swing/JDialog.P .deps/javax/swing/JEditorPane.P \ +.deps/javax/swing/JFileChooser.P \ .deps/javax/swing/JFormattedTextField.P .deps/javax/swing/JFrame.P \ .deps/javax/swing/JInternalFrame.P .deps/javax/swing/JLabel.P \ .deps/javax/swing/JLayeredPane.P .deps/javax/swing/JList.P \