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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? toolkit.java

?? linux下編程用 編譯軟件
?? JAVA
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
   * @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)

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品专区在线| 91美女片黄在线观看91美女| 亚洲日本在线天堂| 国产网红主播福利一区二区| 精品国产伦一区二区三区观看方式| 欧美天堂一区二区三区| 色8久久人人97超碰香蕉987| av不卡免费电影| 91免费在线视频观看| 日本道在线观看一区二区| 99视频国产精品| 91成人看片片| 91精品综合久久久久久| 欧美久久久久久蜜桃| 日韩欧美国产wwwww| 2020国产精品自拍| 国产精品女同一区二区三区| 中文字幕一区三区| 亚洲香肠在线观看| 麻豆91在线看| 成人激情av网| 欧美视频日韩视频在线观看| 欧美一区二区三区性视频| 日韩欧美在线影院| 中文字幕精品在线不卡| 国产精品嫩草99a| 一区二区三区四区视频精品免费| 亚洲天堂精品在线观看| 亚洲成a人片在线观看中文| 日韩不卡手机在线v区| 国产在线视频不卡二| 99久久精品国产导航| 欧美挠脚心视频网站| 国产亚洲欧洲一区高清在线观看| 亚洲免费观看高清| 久久精品国产亚洲高清剧情介绍| 成人一级视频在线观看| 欧美日韩国产高清一区二区三区 | 国产精品第四页| 亚洲一区二区欧美日韩| 国产一区二区导航在线播放| 成+人+亚洲+综合天堂| 91精品麻豆日日躁夜夜躁| 国产精品视频在线看| 美女在线观看视频一区二区| 91亚洲精品久久久蜜桃| 欧美mv日韩mv亚洲| 一区二区三区视频在线观看| 国内不卡的二区三区中文字幕 | 日韩制服丝袜先锋影音| 国产一区二区三区高清播放| 色婷婷综合视频在线观看| 久久久久久9999| 美女www一区二区| 91久久久免费一区二区| 日本一区二区免费在线| 久久精品国产一区二区三| 欧美日韩一级大片网址| 亚洲欧美另类久久久精品 | 中文字幕综合网| 经典三级视频一区| 91精品国产入口| 亚洲国产三级在线| 99re这里只有精品6| 亚洲国产成人午夜在线一区| 九色综合狠狠综合久久| 欧美一区二区三区四区高清| 久久草av在线| 91精品国产手机| 日日摸夜夜添夜夜添国产精品| 91视频国产资源| 最近日韩中文字幕| 高清国产午夜精品久久久久久| 日韩午夜小视频| 免费精品视频在线| 欧美视频三区在线播放| 亚洲线精品一区二区三区八戒| 在线视频国内自拍亚洲视频| 综合分类小说区另类春色亚洲小说欧美 | 精品美女一区二区| 久久99九九99精品| 欧美一区二区三区视频在线观看| 日韩在线卡一卡二| 日韩一级二级三级| 精品一区二区三区在线观看国产| 日韩免费观看高清完整版| 极品少妇一区二区| 欧美国产亚洲另类动漫| 成人久久视频在线观看| 亚洲三级在线观看| 欧美日韩在线播放| 精品一二线国产| 国产精品三级视频| 日本精品视频一区二区| 亚欧色一区w666天堂| 日韩一区二区三| 国产精品1区二区.| 亚洲女性喷水在线观看一区| 色久优优欧美色久优优| 日本色综合中文字幕| 国产性做久久久久久| 色婷婷一区二区| 日韩国产一区二| 国产日产欧美一区二区视频| aaa欧美色吧激情视频| 天天操天天色综合| 亚洲精品在线电影| 一本久道中文字幕精品亚洲嫩| 视频一区免费在线观看| 欧美韩国一区二区| 欧美精品久久99久久在免费线| 精品中文av资源站在线观看| 国产精品日韩成人| 欧美一区二区视频网站| 成人毛片视频在线观看| 日本成人在线电影网| 日本一区二区三区免费乱视频 | 亚洲国产精品av| 欧美三级电影在线看| 国产永久精品大片wwwapp| 亚洲制服丝袜一区| 久久蜜臀中文字幕| 欧美日韩精品一二三区| 国产999精品久久久久久绿帽| 五月婷婷色综合| 国产精品久久久久aaaa| 欧美一区二区三区成人| 91久久国产最好的精华液| 国产精品一区二区男女羞羞无遮挡| 亚洲伊人色欲综合网| 欧美经典一区二区三区| 制服丝袜av成人在线看| 91久久久免费一区二区| www.欧美.com| 春色校园综合激情亚洲| 韩国一区二区三区| 久久国产精品色| 水野朝阳av一区二区三区| 综合电影一区二区三区 | 精品免费一区二区三区| 欧美无砖专区一中文字| 99v久久综合狠狠综合久久| 国产盗摄视频一区二区三区| 日韩电影免费一区| 日本女人一区二区三区| 午夜欧美2019年伦理| 亚洲一区精品在线| 一区二区三区不卡视频在线观看 | 九一九一国产精品| 麻豆精品新av中文字幕| 天天做天天摸天天爽国产一区| 亚洲精品亚洲人成人网| 亚洲激情男女视频| 一区二区三区在线免费| 亚洲狠狠丁香婷婷综合久久久| 亚洲图片激情小说| 亚洲男人都懂的| 亚洲不卡一区二区三区| 午夜久久久久久久久| 日韩高清国产一区在线| 喷水一区二区三区| 精品综合免费视频观看| 国模少妇一区二区三区| 国产成人综合网站| 99精品国产一区二区三区不卡| 99久久99久久综合| 91官网在线免费观看| 欧美日韩1区2区| 日韩精品一区二区三区蜜臀| 亚洲免费观看视频| 亚洲午夜三级在线| 免费在线观看日韩欧美| 久久福利资源站| 成人小视频在线观看| 色呦呦一区二区三区| 91精品蜜臀在线一区尤物| 精品欧美乱码久久久久久1区2区| 久久五月婷婷丁香社区| 亚洲视频免费看| 日韩国产欧美在线视频| 国产美女精品在线| 日本高清视频一区二区| 欧美tk—视频vk| 亚洲视频网在线直播| 美女视频网站久久| 成人av综合在线| 在线播放日韩导航| 日本一区免费视频| 亚洲国产一区二区视频| 国产乱码精品1区2区3区| 欧美曰成人黄网| 久久蜜臀精品av| 日韩中文字幕不卡| 成人爱爱电影网址| 欧美va亚洲va香蕉在线| 亚洲综合av网| 成人午夜看片网址| 欧美一区午夜精品| 亚洲一区二区五区| 9久草视频在线视频精品|