jdk/src/java.desktop/share/classes/java/awt/Canvas.java
author alexsch
Wed, 24 Aug 2016 00:23:49 +0400
changeset 40719 4ae72a69bd3b
parent 35667 ed476aba94de
permissions -rw-r--r--
8129854: Remove reflection from AWT/Swing classes Reviewed-by: serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
     2
 * Copyright (c) 1995, 2015, 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: 2459
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: 2459
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: 2459
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2459
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2459
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.image.BufferStrategy;
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    28
import java.awt.peer.CanvasPeer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.accessibility.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
    32
 * A {@code Canvas} component represents a blank rectangular
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * area of the screen onto which the application can draw or from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * which the application can trap input events from the user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <p>
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
    36
 * An application must subclass the {@code Canvas} class in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * order to get useful functionality such as creating a custom
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
    38
 * component. The {@code paint} method must be overridden
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * in order to perform custom graphics on the canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author      Sami Shaio
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 7668
diff changeset
    42
 * @since       1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public class Canvas extends Component implements Accessible {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static final String base = "canvas";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static int nameCounter = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * JDK 1.1 serialVersionUID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     private static final long serialVersionUID = -2284879212465893870L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * Constructs a new Canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    public Canvas() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
30485
2ae50a16ccae 4703110: java.awt.Canvas(GraphicaConfiguration): null reaction
serb
parents: 30471
diff changeset
    61
     * Constructs a new Canvas given a GraphicsConfiguration object. If null is
2ae50a16ccae 4703110: java.awt.Canvas(GraphicaConfiguration): null reaction
serb
parents: 30471
diff changeset
    62
     * passed, then the default GraphicsConfiguration will be used.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     *
30485
2ae50a16ccae 4703110: java.awt.Canvas(GraphicaConfiguration): null reaction
serb
parents: 30471
diff changeset
    64
     * @param config a reference to a GraphicsConfiguration object or null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @see GraphicsConfiguration
30485
2ae50a16ccae 4703110: java.awt.Canvas(GraphicaConfiguration): null reaction
serb
parents: 30471
diff changeset
    67
     * @see Component#getGraphicsConfiguration()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public Canvas(GraphicsConfiguration config) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        this();
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    71
        setGraphicsConfiguration(config);
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    72
    }
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    73
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    74
    @Override
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    75
    void setGraphicsConfiguration(GraphicsConfiguration gc) {
6828
3999af3d33de 6838089: java.awt.Window.setOpacity() doesn't throw IllegalComponentStateException for two-display conf
dcherepanov
parents: 5506
diff changeset
    76
        synchronized(getTreeLock()) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    77
            CanvasPeer peer = (CanvasPeer) this.peer;
6828
3999af3d33de 6838089: java.awt.Window.setOpacity() doesn't throw IllegalComponentStateException for two-display conf
dcherepanov
parents: 5506
diff changeset
    78
            if (peer != null) {
3999af3d33de 6838089: java.awt.Window.setOpacity() doesn't throw IllegalComponentStateException for two-display conf
dcherepanov
parents: 5506
diff changeset
    79
                gc = peer.getAppropriateGraphicsConfiguration(gc);
3999af3d33de 6838089: java.awt.Window.setOpacity() doesn't throw IllegalComponentStateException for two-display conf
dcherepanov
parents: 5506
diff changeset
    80
            }
3999af3d33de 6838089: java.awt.Window.setOpacity() doesn't throw IllegalComponentStateException for two-display conf
dcherepanov
parents: 5506
diff changeset
    81
            super.setGraphicsConfiguration(gc);
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2
diff changeset
    82
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Construct a name for this component.  Called by getName() when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * name is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    String constructComponentName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        synchronized (Canvas.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            return base + nameCounter++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * Creates the peer of the canvas.  This peer allows you to change the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * user interface of the canvas without changing its functionality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * @see     java.awt.Component#getToolkit()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    public void addNotify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        synchronized (getTreeLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            if (peer == null)
30471
c1568a2416a8 8074757: Remove java.awt.Toolkit methods which return peer types
serb
parents: 30469
diff changeset
   103
                peer = getComponentFactory().createCanvas(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            super.addNotify();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Paints this canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <p>
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   111
     * Most applications that subclass {@code Canvas} should
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * override this method in order to perform some useful operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * (typically, custom painting of the canvas).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * The default operation is simply to clear the canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Applications that override this method need not call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * super.paint(g).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @param      g   the specified Graphics context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @see        #update(Graphics)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @see        Component#paint(Graphics)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    public void paint(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        g.clearRect(0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Updates this canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <p>
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   129
     * This method is called in response to a call to {@code repaint}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * The canvas is first cleared by filling it with the background
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * color, and then completely redrawn by calling this canvas's
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   132
     * {@code paint} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * Note: applications that override this method should either call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * super.update(g) or incorporate the functionality described
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * above into their own code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @param g the specified Graphics context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @see   #paint(Graphics)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @see   Component#update(Graphics)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public void update(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        g.clearRect(0, 0, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        paint(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    boolean postsOldMouseEvents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * Creates a new strategy for multi-buffering on this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * Multi-buffering is useful for rendering performance.  This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * attempts to create the best strategy available with the number of
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   154
     * buffers supplied.  It will always create a {@code BufferStrategy}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * with that number of buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * A page-flipping strategy is attempted first, then a blitting strategy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * using accelerated buffers.  Finally, an unaccelerated blitting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * strategy is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Each time this method is called,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * the existing buffer strategy for this component is discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @param numBuffers number of buffers to create, including the front buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @exception IllegalArgumentException if numBuffers is less than 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @exception IllegalStateException if the component is not displayable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @see #isDisplayable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @see #getBufferStrategy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public void createBufferStrategy(int numBuffers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        super.createBufferStrategy(numBuffers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * Creates a new strategy for multi-buffering on this component with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * required buffer capabilities.  This is useful, for example, if only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * accelerated memory or page flipping is desired (as specified by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * buffer capabilities).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Each time this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * is called, the existing buffer strategy for this component is discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param numBuffers number of buffers to create
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param caps the required capabilities for creating the buffer strategy;
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   183
     * cannot be {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @exception AWTException if the capabilities supplied could not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * supported or met; this may happen, for example, if there is not enough
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * accelerated memory currently available, or if page flipping is specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * but not possible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @exception IllegalArgumentException if numBuffers is less than 1, or if
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   189
     * caps is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @see #getBufferStrategy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public void createBufferStrategy(int numBuffers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        BufferCapabilities caps) throws AWTException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        super.createBufferStrategy(numBuffers, caps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   199
     * Returns the {@code BufferStrategy} used by this component.  This
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   200
     * method will return null if a {@code BufferStrategy} has not yet
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * been created or has been disposed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @return the buffer strategy used by this component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @see #createBufferStrategy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    public BufferStrategy getBufferStrategy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        return super.getBufferStrategy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * --- Accessibility Support ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * Gets the AccessibleContext associated with this Canvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * For canvases, the AccessibleContext takes the form of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * AccessibleAWTCanvas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * A new AccessibleAWTCanvas instance is created if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @return an AccessibleAWTCanvas that serves as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *         AccessibleContext of this Canvas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public AccessibleContext getAccessibleContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        if (accessibleContext == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            accessibleContext = new AccessibleAWTCanvas();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        return accessibleContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * This class implements accessibility support for the
35667
ed476aba94de 8138838: docs cleanup for java.desktop
avstepan
parents: 30485
diff changeset
   235
     * {@code Canvas} class.  It provides an implementation of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * Java Accessibility API appropriate to canvas user-interface elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    protected class AccessibleAWTCanvas extends AccessibleAWTComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        private static final long serialVersionUID = -6325592262103146699L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
         * Get the role of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
         * @return an instance of AccessibleRole describing the role of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
         * object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
         * @see AccessibleRole
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        public AccessibleRole getAccessibleRole() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            return AccessibleRole.CANVAS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    } // inner class AccessibleAWTCanvas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
}