< prev index next >

src/java.desktop/share/classes/java/awt/geom/Path2D.java

Print this page
rev 56131 : 8225372: accessibility errors in tables in java.desktop files
Reviewed-by: aivanov

*** 1,7 **** /* ! * Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 890,976 **** * * <table class="striped"> * <caption>Constants</caption> * <thead> * <tr> ! * <th>Constant Name</th> ! * <th>Byte Value</th> ! * <th>Followed by</th> ! * <th>Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <td>{@code SERIAL_STORAGE_FLT_ARRAY}</td> * <td>0x30</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of floats.</td> * </tr> * <tr> ! * <td>{@code SERIAL_STORAGE_DBL_ARRAY}</td> * <td>0x31</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of doubles.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_MOVETO}</td> * <td>0x40</td> * <td>2 floats</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_LINETO}</td> * <td>0x41</td> * <td>2 floats</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_QUADTO}</td> * <td>0x42</td> * <td>4 floats</td> * <td>A {@link #quadTo quadTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_CUBICTO}</td> * <td>0x43</td> * <td>6 floats</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_MOVETO}</td> * <td>0x50</td> * <td>2 doubles</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_LINETO}</td> * <td>0x51</td> * <td>2 doubles</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_QUADTO}</td> * <td>0x52</td> * <td>4 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_CUBICTO}</td> * <td>0x53</td> * <td>6 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_CLOSE}</td> * <td>0x60</td> * <td></td> * <td>A {@link #closePath closePath} path segment.</td> * </tr> * <tr> ! * <td>{@code SERIAL_PATH_END}</td> * <td>0x61</td> * <td></td> * <td>There are no more path segments following.</td> * </tbody> * </table> --- 890,976 ---- * * <table class="striped"> * <caption>Constants</caption> * <thead> * <tr> ! * <th scope="col">Constant Name</th> ! * <th scope="col">Byte Value</th> ! * <th scope="col">Followed by</th> ! * <th scope="col">Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <th scope="row">{@code SERIAL_STORAGE_FLT_ARRAY}</th> * <td>0x30</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of floats.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_STORAGE_DBL_ARRAY}</th> * <td>0x31</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of doubles.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_MOVETO}</th> * <td>0x40</td> * <td>2 floats</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_LINETO}</th> * <td>0x41</td> * <td>2 floats</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_QUADTO}</th> * <td>0x42</td> * <td>4 floats</td> * <td>A {@link #quadTo quadTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_CUBICTO}</th> * <td>0x43</td> * <td>6 floats</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_MOVETO}</th> * <td>0x50</td> * <td>2 doubles</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_LINETO}</th> * <td>0x51</td> * <td>2 doubles</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_QUADTO}</th> * <td>0x52</td> * <td>4 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_CUBICTO}</th> * <td>0x53</td> * <td>6 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_CLOSE}</th> * <td>0x60</td> * <td></td> * <td>A {@link #closePath closePath} path segment.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_PATH_END}</th> * <td>0x61</td> * <td></td> * <td>There are no more path segments following.</td> * </tbody> * </table>
*** 1664,1750 **** * of {@code Path2D} objects: * <table class="striped"> * <caption>Constants</caption> * <thead> * <tr> ! * <th>Constant Name</th> ! * <th>Byte Value</th> ! * <th>Followed by</th> ! * <th>Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <td>{@code SERIAL_STORAGE_FLT_ARRAY}</td> * <td>0x30</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of floats.</td> * </tr> * <tr> ! * <td>{@code SERIAL_STORAGE_DBL_ARRAY}</td> * <td>0x31</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of doubles.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_MOVETO}</td> * <td>0x40</td> * <td>2 floats</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_LINETO}</td> * <td>0x41</td> * <td>2 floats</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_QUADTO}</td> * <td>0x42</td> * <td>4 floats</td> * <td>A {@link #quadTo quadTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_FLT_CUBICTO}</td> * <td>0x43</td> * <td>6 floats</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_MOVETO}</td> * <td>0x50</td> * <td>2 doubles</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_LINETO}</td> * <td>0x51</td> * <td>2 doubles</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_QUADTO}</td> * <td>0x52</td> * <td>4 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_DBL_CUBICTO}</td> * <td>0x53</td> * <td>6 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <td>{@code SERIAL_SEG_CLOSE}</td> * <td>0x60</td> * <td></td> * <td>A {@link #closePath closePath} path segment.</td> * </tr> * <tr> ! * <td>{@code SERIAL_PATH_END}</td> * <td>0x61</td> * <td></td> * <td>There are no more path segments following.</td> * </tbody> * </table> --- 1664,1750 ---- * of {@code Path2D} objects: * <table class="striped"> * <caption>Constants</caption> * <thead> * <tr> ! * <th scope="col">Constant Name</th> ! * <th scope="col">Byte Value</th> ! * <th scope="col">Followed by</th> ! * <th scope="col">Description</th> * </tr> * </thead> * <tbody> * <tr> ! * <th scope="row">{@code SERIAL_STORAGE_FLT_ARRAY}</th> * <td>0x30</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of floats.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_STORAGE_DBL_ARRAY}</th> * <td>0x31</td> * <td></td> * <td>A hint that the original {@code Path2D} object stored * the coordinates in a Java array of doubles.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_MOVETO}</th> * <td>0x40</td> * <td>2 floats</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_LINETO}</th> * <td>0x41</td> * <td>2 floats</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_QUADTO}</th> * <td>0x42</td> * <td>4 floats</td> * <td>A {@link #quadTo quadTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_FLT_CUBICTO}</th> * <td>0x43</td> * <td>6 floats</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_MOVETO}</th> * <td>0x50</td> * <td>2 doubles</td> * <td>A {@link #moveTo moveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_LINETO}</th> * <td>0x51</td> * <td>2 doubles</td> * <td>A {@link #lineTo lineTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_QUADTO}</th> * <td>0x52</td> * <td>4 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_DBL_CUBICTO}</th> * <td>0x53</td> * <td>6 doubles</td> * <td>A {@link #curveTo curveTo} path segment follows.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_SEG_CLOSE}</th> * <td>0x60</td> * <td></td> * <td>A {@link #closePath closePath} path segment.</td> * </tr> * <tr> ! * <th scope="row">{@code SERIAL_PATH_END}</th> * <td>0x61</td> * <td></td> * <td>There are no more path segments following.</td> * </tbody> * </table>
< prev index next >