diff options
author | Michael Koch <konqueror@gmx.de> | 2003-02-15 09:21:55 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-02-15 09:21:55 +0000 |
commit | 30df932c23db0f7d3b7353f6fee11c4ec27dd9c2 (patch) | |
tree | 7b1568d550111d47732726dd7a7f5bdc5e660ddf /libjava/java/awt/ContainerOrderFocusTraversalPolicy.java | |
parent | e898926c9d597ef2cfd08f278b20ed916a18a98b (diff) | |
download | gcc-30df932c23db0f7d3b7353f6fee11c4ec27dd9c2.zip gcc-30df932c23db0f7d3b7353f6fee11c4ec27dd9c2.tar.gz gcc-30df932c23db0f7d3b7353f6fee11c4ec27dd9c2.tar.bz2 |
2003-02-15 Michael Koch <konqueror@gmx.de>
* java/awt/CheckboxMenuItem.java
(CheckBoxMenuItem): Dont implement Serializable.
(getListeners): New method,
(getItemListeners): New method.
* java/awt/Choice.java
(getListeners): New method,
(getItemListeners): New method.
* java/awt/Container.java
(getListeners): Added exception documentation.
(setFocusTraversalKeys): Throw exceptions, added documentattion.
(getFocusTraversalKeys): Added documentation.
(areFocusTraversalKeysSet): Added documentation.
(applyComponentOrientation): Added documentation.
* java/awt/ContainerOrderFocusTraversalPolicy.java
(implicitDownCycleTraversal): Renamed from downCycle for
serialization.
(ContainerOrderFocusTraversalPolicy): Added documentation.
(accept): Reformated.
* java/awt/Dialog.java
(Dialog): Dont implement Serializable.
(Dialog): Added documentation.
* java/awt/Font.java
(Font): Dont use absolute class name.
* java/awt/Frame.java
(Frame): Font implement Serializable.
* java/awt/List.java
(getListeners): New method,
(getActionListeners): New method.
(getItemListeners): New method.
* java/awt/Menu.java
(countItems): New deprecated method.
* java/awt/Scrollbar.java
(getListeners): New method,
(getAdjustmentListeners): New method,
* java/awt/TextComponent.java
(getListeners): New method,
(getTextListeners): New method,
* java/awt/TextField.java
(getListeners): New method,
(getActionListeners): New method.
* java/awt/Window.java
(windowFocusListener): New member variable.
(windowStateListener): New member variable.
(getWindowFocusListeners): New method.
(getWindowStateListeners): New method.
(addWindowFocusListener): New method.
(addWindowStateListener): New method.
(removeWindowFocusListener): New method.
(removeWindowStateListener): New method.
* java/awt/datatransfer/DataFlavor.java
(isRepresentationClassByteBuffer): New method.
(isRepresentationClassCharBuffer): New method.
(isRepresentationClassReader): New method.
From-SVN: r62933
Diffstat (limited to 'libjava/java/awt/ContainerOrderFocusTraversalPolicy.java')
-rw-r--r-- | libjava/java/awt/ContainerOrderFocusTraversalPolicy.java | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/libjava/java/awt/ContainerOrderFocusTraversalPolicy.java b/libjava/java/awt/ContainerOrderFocusTraversalPolicy.java index e3cf31c..71267a5 100644 --- a/libjava/java/awt/ContainerOrderFocusTraversalPolicy.java +++ b/libjava/java/awt/ContainerOrderFocusTraversalPolicy.java @@ -48,8 +48,11 @@ public class ContainerOrderFocusTraversalPolicy extends FocusTraversalPolicy { static final long serialVersionUID = 486933713763926351L; - private boolean downCycle = true; + private boolean implicitDownCycleTraversal = true; + /** + * Creates the <code>ContainerOrderFocusTraversalPolicy</code> object. + */ public ContainerOrderFocusTraversalPolicy() { throw new Error("not implemented"); @@ -82,17 +85,19 @@ public class ContainerOrderFocusTraversalPolicy extends FocusTraversalPolicy public void setImplicitDownCycleTraversal(boolean value) { - downCycle = value; + boolean implicitDownCycleTraversal = value; } public boolean getImplicitDownCycleTraversal() { - return downCycle; + return implicitDownCycleTraversal; } protected boolean accept(Component current) { - return current.visible && current.isDisplayable() && current.enabled - && current.focusable; + return (current.visible + && current.isDisplayable() + && current.enabled + && current.focusable); } } // class ContainerOrderFocusTraversalPolicy |