jdk/src/java.desktop/share/classes/java/awt/DisplayMode.java
changeset 32865 f9cb6e427f9e
parent 25859 3317bb8137f4
child 35667 ed476aba94de
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    90     /**
    90     /**
    91      * Value of the bit depth if multiple bit depths are supported in this
    91      * Value of the bit depth if multiple bit depths are supported in this
    92      * display mode.
    92      * display mode.
    93      * @see #getBitDepth
    93      * @see #getBitDepth
    94      */
    94      */
    95     @Native public final static int BIT_DEPTH_MULTI = -1;
    95     @Native public static final int BIT_DEPTH_MULTI = -1;
    96 
    96 
    97     /**
    97     /**
    98      * Returns the bit depth of the display, in bits per pixel.  This may be
    98      * Returns the bit depth of the display, in bits per pixel.  This may be
    99      * <code>BIT_DEPTH_MULTI</code> if multiple bit depths are supported in
    99      * <code>BIT_DEPTH_MULTI</code> if multiple bit depths are supported in
   100      * this display mode.
   100      * this display mode.
   108 
   108 
   109     /**
   109     /**
   110      * Value of the refresh rate if not known.
   110      * Value of the refresh rate if not known.
   111      * @see #getRefreshRate
   111      * @see #getRefreshRate
   112      */
   112      */
   113     @Native public final static int REFRESH_RATE_UNKNOWN = 0;
   113     @Native public static final int REFRESH_RATE_UNKNOWN = 0;
   114 
   114 
   115     /**
   115     /**
   116      * Returns the refresh rate of the display, in hertz.  This may be
   116      * Returns the refresh rate of the display, in hertz.  This may be
   117      * <code>REFRESH_RATE_UNKNOWN</code> if the information is not available.
   117      * <code>REFRESH_RATE_UNKNOWN</code> if the information is not available.
   118      *
   118      *