JDK 11 java.desktop.jmod - Desktop Module

JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.

JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.

JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.desktop.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

javax/accessibility/AccessibleTableModelChange.java

/*
 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package javax.accessibility;

/**
 * The {@code AccessibleTableModelChange} interface describes a change to the
 * table model. The attributes of the model change can be obtained by the
 * following methods:
 * <ul>
 *   <li>{@code public int getType();}
 *   <li>{@code public int getFirstRow();}
 *   <li>{@code public int getLastRow();}
 *   <li>{@code public int getFirstColumn();}
 *   <li>{@code public int getLastColumn();}
 * </ul>
 * The model change type returned by getType() will be one of:
 * <ul>
 *   <li>{@code INSERT} - one or more rows and/or columns have been inserted
 *   <li>{@code UPDATE} - some of the table data has changed
 *   <li>{@code DELETE} - one or more rows and/or columns have been deleted
 * </ul>
 * The affected area of the table can be determined by the other four methods
 * which specify ranges of rows and columns
 *
 * @author Lynn Monsanto
 * @see Accessible
 * @see Accessible#getAccessibleContext
 * @see AccessibleContext
 * @see AccessibleContext#getAccessibleTable
 * @since 1.3
 */
public interface AccessibleTableModelChange {

    /**
     * Identifies the insertion of new rows and/or columns.
     */
    public static final int INSERT =  1;

    /**
     * Identifies a change to existing data.
     */
    public static final int UPDATE =  0;

    /**
     * Identifies the deletion of rows and/or columns.
     */
    public static final int DELETE = -1;

    /**
     * Returns the type of event.
     *
     * @return the type of event
     * @see #INSERT
     * @see #UPDATE
     * @see #DELETE
     */
    public int getType();

    /**
     * Returns the first row that changed.
     *
     * @return the first row that changed
     */
    public int getFirstRow();

    /**
     * Returns the last row that changed.
     *
     * @return the last row that changed
     */
    public int getLastRow();

    /**
     * Returns the first column that changed.
     *
     * @return the first column that changed
     */
    public int getFirstColumn();

    /**
     * Returns the last column that changed.
     *
     * @return the last column that changed
     */
    public int getLastColumn();
}

javax/accessibility/AccessibleTableModelChange.java

 

Or download all of them as a single archive file:

File name: java.desktop-11.0.1-src.zip
File size: 7974380 bytes
Release date: 2018-11-04
Download 

 

JDK 11 java.instrument.jmod - Instrument Module

JDK 11 java.datatransfer.jmod - Data Transfer Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2022-08-06, 194599👍, 5💬