jdk/src/share/classes/javax/swing/plaf/multi/MultiDesktopPaneUI.java
author darcy
Wed, 02 Jul 2014 23:03:27 -0700
changeset 25565 ce603b34c98d
parent 25152 4459bf7dab0b
permissions -rw-r--r--
8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.* 8042849: Fix raw and unchecked warnings in com.sun.java.swing Reviewed-by: pchelko, alexsch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
25152
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
     2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing.plaf.multi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.swing.plaf.DesktopPaneUI;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.swing.plaf.ComponentUI;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.swing.JComponent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Graphics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.Dimension;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.accessibility.Accessible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * A multiplexing UI used to combine <code>DesktopPaneUI</code>s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>This file was automatically generated by AutoMulti.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @author  Otto Multey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
public class MultiDesktopPaneUI extends DesktopPaneUI {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     * The vector containing the real UIs.  This is populated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * in the call to <code>createUI</code>, and can be obtained by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     * the <code>getUIs</code> method.  The first element is guaranteed to be the real UI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     * obtained from the default look and feel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     */
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
    50
    protected Vector<ComponentUI> uis = new Vector<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
// Common UI methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * Returns the list of UIs associated with this multiplexing UI.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * allows processing of the UIs by an application aware of multiplexing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * UIs on components.
25152
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
    60
     *
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
    61
     * @return an array of the UI delegates
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    public ComponentUI[] getUIs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        return MultiLookAndFeel.uisToArray(uis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
// DesktopPaneUI methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
// ComponentUI methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Invokes the <code>contains</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public boolean contains(JComponent a, int b, int c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        boolean returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
    83
            uis.elementAt(0).contains(a,b,c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
    85
            uis.elementAt(i).contains(a,b,c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * Invokes the <code>update</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public void update(Graphics a, JComponent b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        for (int i = 0; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
    95
            uis.elementAt(i).update(a,b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Returns a multiplexing UI instance if any of the auxiliary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * UI object obtained from the default <code>LookAndFeel</code>.
25152
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
   103
     *
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
   104
     * @param  a the component to create the UI for
4459bf7dab0b 8046445: Fix doclint warnings for javax.swing.plaf.multi
yan
parents: 5506
diff changeset
   105
     * @return the UI delegate created
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public static ComponentUI createUI(JComponent a) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   108
        MultiDesktopPaneUI mui = new MultiDesktopPaneUI();
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   109
        return MultiLookAndFeel.createUIs(mui, mui.uis, a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * Invokes the <code>installUI</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public void installUI(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        for (int i = 0; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   117
            uis.elementAt(i).installUI(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * Invokes the <code>uninstallUI</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public void uninstallUI(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        for (int i = 0; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   126
            uis.elementAt(i).uninstallUI(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Invokes the <code>paint</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public void paint(Graphics a, JComponent b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        for (int i = 0; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   135
            uis.elementAt(i).paint(a,b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Invokes the <code>getPreferredSize</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public Dimension getPreferredSize(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        Dimension returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   147
            uis.elementAt(0).getPreferredSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   149
            uis.elementAt(i).getPreferredSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Invokes the <code>getMinimumSize</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    public Dimension getMinimumSize(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        Dimension returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   162
            uis.elementAt(0).getMinimumSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   164
            uis.elementAt(i).getMinimumSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * Invokes the <code>getMaximumSize</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    public Dimension getMaximumSize(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        Dimension returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   177
            uis.elementAt(0).getMaximumSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   179
            uis.elementAt(i).getMaximumSize(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * Invokes the <code>getAccessibleChildrenCount</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    public int getAccessibleChildrenCount(JComponent a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        int returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   192
            uis.elementAt(0).getAccessibleChildrenCount(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   194
            uis.elementAt(i).getAccessibleChildrenCount(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Invokes the <code>getAccessibleChild</code> method on each UI handled by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @return the value obtained from the first UI, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * the UI obtained from the default <code>LookAndFeel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    public Accessible getAccessibleChild(JComponent a, int b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        Accessible returnValue =
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   207
            uis.elementAt(0).getAccessibleChild(a,b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        for (int i = 1; i < uis.size(); i++) {
25565
ce603b34c98d 8043548: Fix raw and unchecked lint warnings in javax.swing.plaf.*
darcy
parents: 25152
diff changeset
   209
            uis.elementAt(i).getAccessibleChild(a,b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        return returnValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
}