summaryrefslogtreecommitdiff
path: root/javax/swing/JDesktopPane.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-10-22 08:22:34 +0000
committerMichael Koch <konqueror@gmx.de>2004-10-22 08:22:34 +0000
commit2aa195cc70aade6ae2d62e9ddacc1ca12623f360 (patch)
tree1fd5e18bf5aa8104a5f2c3fd84aee5c4c9793492 /javax/swing/JDesktopPane.java
parent90772323a97b449d847f32bd71a519de14330e28 (diff)
downloadclasspath-2aa195cc70aade6ae2d62e9ddacc1ca12623f360.tar.gz
2004-10-22 Michael Koch <konqueror@gmx.de>
* javax/swing/AbstractButton.java (getLabel): Added @deprecated tag. (setLabel): Likewise. * javax/swing/FocusManager.java (disableSwingFocusManager): Likewise. (isFocusManagerEnabled): Likewise. * javax/swing/JComponent.java (isManagingFocus): Added version to @deprecated tag. (getNextFocusableComponent): Moved @deprecated tag to bottom of javadoc. (getConditionForKeyStroke): Likewise. (getActionForKeyStroke): Likewise. * javax/swing/JDesktopPane.java (LIVE_DRAG_MODE): Added @specnote tag. (OUTLINE_DRAG_MODE): Likewise. * javax/swing/JInternalFrame.java (MENU_BAR_PROPERTY): Fixed value. (getMenuBar): Added @deprecated tag. (setMenuBar): Likewise. * javax/swing/JViewport.java (isBackingStoreEnabled): Likewise. (setBackingStoreEnabled): Likewise. * javax/swing/plaf/basic/BasicDesktopPaneUI.java (closeKey): Likewise. (maximizeKey): Likewise. (minimizeKey): Likewise. (navigateKey): Likewise. (navigateKey2): Likewise. * javax/swing/plaf/basic/BasicInternalFrameUI.java (openMenuKey): Likewise. * javax/swing/plaf/basic/BasicSplitPaneUI.java (keyboardDownRightListener): Likewise. (keyboardEndListener): Likewise. (keyboardHomeListener): Likewise. (keyboardResizeToggleListener): Likewise. (keyboardUpLeftListener): Likewise. (dividerResizeToggleKey): Likewise. (downKey): Likewise. (endKey): Likewise. (homeKey): Likewise. (leftKey): Likewise. (rightKey): Likewise. (upKey): Likewise. (createKeyboardUpLeftListener): Likewise. (createKeyboardDownRightListener): Likewise. (createKeyboardHomeListener): Likewise. (createKeyboardEndListener): Likewise. (createKeyboardResizeToggleListener): Likewise. (getDividerBorderSize): Likewise. * javax/swing/plaf/basic/BasicTabbedPaneUI.java (downKey): Likewise. (leftKey): Likewise. (rightKey): Likewise. (upKey): Likewise.
Diffstat (limited to 'javax/swing/JDesktopPane.java')
-rw-r--r--javax/swing/JDesktopPane.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/javax/swing/JDesktopPane.java b/javax/swing/JDesktopPane.java
index e37bdc7db..b35b58f8d 100644
--- a/javax/swing/JDesktopPane.java
+++ b/javax/swing/JDesktopPane.java
@@ -35,18 +35,19 @@ 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.beans.PropertyVetoException;
import java.io.IOException;
import java.io.ObjectOutputStream;
+
import javax.accessibility.Accessible;
import javax.accessibility.AccessibleContext;
import javax.accessibility.AccessibleRole;
import javax.swing.plaf.DesktopPaneUI;
-
/**
* JDesktopPane is a container (usually for JInternalFrames) that simulates a
* desktop. Typically, the user will create JInternalFrames and place thme in
@@ -63,12 +64,16 @@ public class JDesktopPane extends JLayeredPane implements Accessible
/**
* This specifies that when dragged, a JInternalFrame should be completely
* visible.
+ *
+ * @specnote final since 1.5.0.
*/
public static final int LIVE_DRAG_MODE = 0;
/**
* This specifies that when dragged, a JInternalFrame should only be visible
* as an outline.
+ *
+ * @specnote final since 1.5.0.
*/
public static final int OUTLINE_DRAG_MODE = 1;