亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? toolkit.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract CheckboxMenuItemPeer    createCheckboxMenuItem(CheckboxMenuItem target);  /**   * Creates a peer object for the specified <code>Component</code>.  The   * peer returned by this method is not a native windowing system peer   * with its own native window.  Instead, this method allows the component   * to draw on its parent window as a "lightweight" widget.   *   * @param target The <code>Component</code> to create the peer for.   *   * @return The peer for the specified <code>Component</code> object.   */  protected LightweightPeer createComponent(Component target)  {    return new gnu.java.awt.peer.GLightweightPeer (target);  }  /**   * Creates a peer object for the specified font name.   *   * @param name The font to create the peer for.   * @param style The font style to create the peer for.   *   * @return The peer for the specified font name.   *   * @deprecated   */  protected abstract FontPeer getFontPeer(String name, int style);  /**   * Copies the current system colors into the specified array.  This is   * the interface used by the <code>SystemColor</code> class.  Although   * this method fills in the array with some default colors a real Toolkit   * should override this method and provide real system colors for the   * native GUI platform.   *   * @param systemColors The array to copy the system colors into.   * It must be at least 26 elements.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   *   * @see java.awt.SystemColor   */  protected void loadSystemColors(int systemColors[])  {    systemColors[SystemColor.DESKTOP]                 = 0xFF005C5C;    systemColors[SystemColor.ACTIVE_CAPTION]          = 0xFF000080;    systemColors[SystemColor.ACTIVE_CAPTION_TEXT]     = 0xFFFFFFFF;    systemColors[SystemColor.ACTIVE_CAPTION_BORDER]   = 0xFFC0C0C0;    systemColors[SystemColor.INACTIVE_CAPTION]        = 0xFF808080;    systemColors[SystemColor.INACTIVE_CAPTION_TEXT]   = 0xFFC0C0C0;    systemColors[SystemColor.INACTIVE_CAPTION_BORDER] = 0xFFC0C0C0;    systemColors[SystemColor.WINDOW]                  = 0xFFFFFFFF;    systemColors[SystemColor.WINDOW_BORDER]           = 0xFF000000;    systemColors[SystemColor.WINDOW_TEXT]             = 0xFF000000;    systemColors[SystemColor.MENU]                    = 0xFFC0C0C0;    systemColors[SystemColor.MENU_TEXT]               = 0xFF000000;    systemColors[SystemColor.TEXT]                    = 0xFFC0C0C0;    systemColors[SystemColor.TEXT_TEXT]               = 0xFF000000;    systemColors[SystemColor.TEXT_HIGHLIGHT]          = 0xFF000090;    systemColors[SystemColor.TEXT_HIGHLIGHT_TEXT]     = 0xFFFFFFFF;    systemColors[SystemColor.TEXT_INACTIVE_TEXT]      = 0xFF808080;    systemColors[SystemColor.CONTROL]                 = 0xFFC0C0C0;    systemColors[SystemColor.CONTROL_TEXT]            = 0xFF000000;    systemColors[SystemColor.CONTROL_HIGHLIGHT]       = 0xFFFFFFFF;    systemColors[SystemColor.CONTROL_LT_HIGHLIGHT]    = 0xFFE0E0E0;    systemColors[SystemColor.CONTROL_SHADOW]          = 0xFF808080;    systemColors[SystemColor.CONTROL_DK_SHADOW]       = 0xFF000000;    systemColors[SystemColor.SCROLLBAR]               = 0xFFE0E0E0;    systemColors[SystemColor.INFO]                    = 0xFFE0E000;    systemColors[SystemColor.INFO_TEXT]               = 0xFF000000;  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public void setDynamicLayout(boolean dynamic)  {  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected boolean isDynamicLayoutSet()  {    return false;  }  /**   * @since 1.4   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public boolean isDynamicLayoutActive()  {    return false;  }  /**   * Returns the dimensions of the screen in pixels.   *   * @return The dimensions of the screen in pixels.   *    * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract Dimension getScreenSize();  /**   * Returns the screen resolution in dots per square inch.   *   * @return The screen resolution in dots per square inch.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract int getScreenResolution();  /**   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   *   * @since 1.4   */  public Insets getScreenInsets(GraphicsConfiguration gc)  {    return null;  }  /**   * Returns the color model of the screen.   *   * @return The color model of the screen.   *    * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract ColorModel getColorModel();  /**   * Returns the names of the available fonts.   *   * @return The names of the available fonts.   *   * @deprecated   */  public abstract String[] getFontList();  /**   * Return the font metrics for the specified font   *   * @param name The name of the font to return metrics for.   *   * @return The requested font metrics.   *   * @deprecated   */  public abstract FontMetrics getFontMetrics(Font name);  /**   * Flushes any buffered data to the screen so that it is in sync with   * what the AWT system has drawn to it.   */  public abstract void sync();  /**   * Returns an instance of the default toolkit.  The default toolkit is   * the subclass of <code>Toolkit</code> specified in the system property   * <code>awt.toolkit</code>, or <code>gnu.java.awt.peer.gtk.GtkToolkit</code>   * if the property is not set.   *   * @return An instance of the system default toolkit.   *   * @throws AWTError If the toolkit cannot be loaded.   */  public static Toolkit getDefaultToolkit()  {    if (toolkit != null)      return toolkit;    String toolkit_name = System.getProperty("awt.toolkit",                                             default_toolkit_name);    try      {        Class cls = Class.forName(toolkit_name);        Object obj = cls.newInstance();        if (!(obj instanceof Toolkit))          throw new AWTError(toolkit_name + " is not a subclass of " +                             "java.awt.Toolkit");        toolkit = (Toolkit) obj;        return toolkit;      }    catch (ThreadDeath death)      {        throw death;      }    catch (Throwable t)      {	AWTError e = new AWTError("Cannot load AWT toolkit: " + toolkit_name);	throw (AWTError) e.initCause(t);      }  }  /**   * Returns an image from the specified file, which must be in a   * recognized format.  Supported formats vary from toolkit to toolkit.   *   * @return name The name of the file to read the image from.   */  public abstract Image getImage(String name);  /**   * Returns an image from the specified URL, which must be in a   * recognized format.  Supported formats vary from toolkit to toolkit.   *   * @return url The URl to read the image from.   */  public abstract Image getImage(URL url);  public abstract Image createImage(String filename);  public abstract Image createImage(URL url);  /**   * Readies an image to be rendered on the screen.  The width and height   * values can be set to the default sizes for the image by passing -1   * in those parameters.   *   * @param image The image to prepare for rendering.   * @param width The width of the image.   * @param height The height of the image.   * @param observer The observer to receive events about the preparation   * process.   *   * @return <code>true</code> if the image is already prepared for rendering,   * <code>false</code> otherwise.   */  public abstract boolean prepareImage(Image image, int width, int height,                                       ImageObserver observer);  /**   * Checks the status of specified image as it is being readied for   * rendering.   *   * @param image The image to prepare for rendering.   * @param width The width of the image.   * @param height The height of the image.   * @param observer The observer to receive events about the preparation   * process.   *   * @return A union of the bitmasks from   * <code>java.awt.image.ImageObserver</code> that indicates the current   * state of the imaging readying process.   */  public abstract int checkImage(Image image, int width, int height,                                 ImageObserver observer);  /**   * Creates an image using the specified <code>ImageProducer</code>   *   * @param producer The <code>ImageProducer</code> to create the image from.   *   * @return The created image.   */  public abstract Image createImage(ImageProducer producer);  /**   * Creates an image from the specified byte array. The array must be in   * a recognized format.  Supported formats vary from toolkit to toolkit.   *   * @param data The raw image data.   *   * @return The created image.   */  public Image createImage(byte[] data)  {    return createImage(data, 0, data.length);  }  /**   * Creates an image from the specified portion of the byte array passed.   * The array must be in a recognized format.  Supported formats vary from   * toolkit to toolkit.   *   * @param data The raw image data.   * @param offset The offset into the data where the image data starts.   * @param len The length of the image data.   *   * @return The created image.   */  public abstract Image createImage(byte[] data, int offset, int len);  /**   * Returns a instance of <code>PrintJob</code> for the specified   * arguments.   *   * @param frame The window initiating the print job.   * @param title The print job title.   * @param props The print job properties.   *   * @return The requested print job, or <code>null</code> if the job   * was cancelled.   *   * @exception NullPointerException If frame is null,   * or GraphicsEnvironment.isHeadless() returns true.   * @exception SecurityException If this thread is not allowed to initiate   * a print job request.   */  public abstract PrintJob getPrintJob(Frame frame, String title,                                       Properties props);  /**   * Returns a instance of <code>PrintJob</code> for the specified   * arguments.   *   * @param frame The window initiating the print job.   * @param title The print job title.   * @param jobAttr A set of job attributes which will control the print job.   * @param pageAttr A set of page attributes which will control the print job.   *   * @exception NullPointerException If frame is null, and either jobAttr is null   * or jobAttr.getDialog() returns JobAttributes.DialogType.NATIVE.   * @exception IllegalArgumentException If pageAttrspecifies differing cross   * feed and feed resolutions, or when GraphicsEnvironment.isHeadless() returns   * true.   * @exception SecurityException If this thread is not allowed to initiate   * a print job request.   *   * @since 1.3   */  public PrintJob getPrintJob(Frame frame, String title,                              JobAttributes jobAttr, PageAttributes pageAttr)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品情趣视频| 午夜亚洲福利老司机| 亚洲成人你懂的| 婷婷成人激情在线网| 亚洲成av人影院在线观看网| 99视频精品在线| 国产精品你懂的在线欣赏| 国产视频一区二区三区在线观看| 日韩精品一级中文字幕精品视频免费观看 | 久久久久久久久久看片| 亚洲一区二区精品3399| www.亚洲色图| **网站欧美大片在线观看| 成人激情午夜影院| ww亚洲ww在线观看国产| 日本欧美一区二区三区| 91国偷自产一区二区使用方法| 亚洲欧美在线另类| 欧美日韩综合色| 麻豆精品视频在线观看视频| 久久久国际精品| 91蜜桃视频在线| 日韩va亚洲va欧美va久久| 亚洲精品在线三区| 99精品国产91久久久久久| 亚洲成人精品影院| 欧美影院午夜播放| 狠狠色综合色综合网络| 亚洲私人影院在线观看| 欧美日韩亚州综合| 国产一区二区三区| 色综合久久中文综合久久97| 亚洲永久精品国产| 精品少妇一区二区三区日产乱码| 2017欧美狠狠色| 国产99久久久国产精品潘金| 欧美高清一级片在线观看| 777亚洲妇女| 成人激情午夜影院| 国产精品一级二级三级| 亚洲人亚洲人成电影网站色| 91精品国产综合久久蜜臀| av网站一区二区三区| 黄色日韩三级电影| 激情深爱一区二区| 亚洲麻豆国产自偷在线| 国产精品毛片大码女人| 日韩欧美一级片| 色香蕉成人二区免费| 不卡免费追剧大全电视剧网站| 亚洲成在人线免费| 亚洲一级不卡视频| 国产精品第13页| 亚洲欧美另类在线| 国产精品久久久久影院色老大 | 青青草原综合久久大伊人精品优势| 久久成人麻豆午夜电影| 夜夜嗨av一区二区三区网页| 18成人在线观看| 久久婷婷色综合| 久久奇米777| 日本一区免费视频| 中文字幕一区视频| 一区二区三区四区av| 亚洲国产综合91精品麻豆| 久久人人爽爽爽人久久久| 精品久久一二三区| 日本一区二区三级电影在线观看 | 一级精品视频在线观看宜春院| 亚洲欧美一区二区三区孕妇| 一区二区三区加勒比av| 国产精品乱码人人做人人爱| 亚洲国产经典视频| 亚洲一区二区欧美激情| 蜜桃精品视频在线| 国产精品天天摸av网| 色激情天天射综合网| 欧美午夜精品理论片a级按摩| 久久99久久99| 亚洲一区二区三区四区在线观看 | 国产成人啪午夜精品网站男同| 成人av网站大全| 在线视频一区二区免费| 精品国内片67194| 亚洲欧美另类在线| 欧美国产一区在线| 制服丝袜亚洲精品中文字幕| 欧美精品久久99| 亚洲欧洲精品成人久久奇米网| 一区二区成人在线观看| 国产精品夜夜爽| 欧美日本乱大交xxxxx| 亚洲欧美怡红院| 在线观看91精品国产入口| 日韩一区二区麻豆国产| 自拍偷拍欧美激情| 国产成人av一区二区三区在线 | 久久国产精品99久久人人澡| 欧美在线999| www.激情成人| 国产精品传媒视频| 色综合久久久久综合99| www国产成人免费观看视频 深夜成人网| 一区二区三区欧美在线观看| 色欧美片视频在线观看在线视频| 久久九九99视频| 国产亚洲短视频| 国产一区二区三区日韩| 日韩欧美国产一区二区三区| 一区二区三区免费看视频| 欧美午夜精品久久久| 日韩不卡一二三区| 久久综合九色综合97婷婷| 国产a久久麻豆| 韩国午夜理伦三级不卡影院| 国产日韩欧美亚洲| 99久久国产免费看| 日韩理论在线观看| 精品视频全国免费看| 日韩电影在线看| 国产亚洲va综合人人澡精品| 欧美韩国日本一区| 99精品视频在线播放观看| 亚洲电影在线播放| 337p粉嫩大胆噜噜噜噜噜91av| 欧美日韩免费观看一区三区| 日本免费在线视频不卡一不卡二| 2021中文字幕一区亚洲| 色悠久久久久综合欧美99| 久久精品免视看| 五月天视频一区| 久久精品一区蜜桃臀影院| 色94色欧美sute亚洲13| 国内成人免费视频| 亚洲一区二区三区激情| 国产欧美日韩综合| 欧美久久久久久蜜桃| 久久99久久久久久久久久久| 亚洲国产精品影院| 国产精品色一区二区三区| 日韩视频永久免费| 欧美性受极品xxxx喷水| 成人在线综合网站| 精品一二线国产| 日韩国产在线观看一区| 久久久综合精品| 欧美一卡二卡在线观看| 欧美日韩大陆一区二区| 在线观看一区二区精品视频| 国产成人av一区二区| 精品一区二区三区香蕉蜜桃| 五月天网站亚洲| 日韩激情一区二区| 亚洲视频在线观看一区| 樱花草国产18久久久久| 亚洲精品国产精品乱码不99| 91小视频免费观看| 成人福利视频在线看| 91小视频免费看| 91免费国产在线观看| 午夜精品福利在线| 精品影院一区二区久久久| 国产高清精品在线| 99re这里都是精品| 欧美三级三级三级爽爽爽| 色哟哟一区二区在线观看| 在线看国产一区| 国产91精品欧美| 欧美日韩一级二级三级| 久久免费精品国产久精品久久久久 | 99久久er热在这里只有精品15 | 成人激情校园春色| 欧美男生操女生| 国产精品网友自拍| 亚洲一区二区高清| 日韩在线播放一区二区| 精品国产一区二区国模嫣然| 中文字幕av一区二区三区免费看| 依依成人精品视频| 国产一区二区在线看| 精品视频在线免费看| 国产精品毛片久久久久久| 一区二区三区四区激情| 99视频精品全部免费在线| 欧美va亚洲va香蕉在线| 亚洲免费视频中文字幕| 粉嫩一区二区三区性色av| 欧美一三区三区四区免费在线看| 中文字幕一区二区日韩精品绯色| 国内精品自线一区二区三区视频| 在线视频你懂得一区二区三区| 国产日韩欧美综合一区| 激情小说欧美图片| 欧美大黄免费观看| 日本不卡一二三区黄网| av男人天堂一区| 国产精品午夜电影| 国产69精品一区二区亚洲孕妇| 欧美日韩视频不卡| 三级一区在线视频先锋 |