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

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

?? toolkit.java

?? this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
   * Returns the color model of the screen.   *   * @return The color model of the screen.   */  public abstract ColorModel getColorModel();  /**   * Returns the names of the available fonts.   *   * @return The names of the available fonts.   */  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.   */  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 (Exception e)      {        throw new AWTError("Cannot load AWT toolkit: " + e.getMessage());      }  }  /**   * 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.   */  public abstract PrintJob getPrintJob(Frame frame, String title,                                       Properties props);  /**   * @since 1.3   */  public PrintJob getPrintJob(Frame frame, String title,                              JobAttributes jobAttr, PageAttributes pageAttr)  {    return null;  }  /**   * Causes a "beep" tone to be generated.   */  public abstract void beep();  /**   * Returns the system clipboard.   *   * @return THe system clipboard.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public abstract Clipboard getSystemClipboard();  /**   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   *   * @since 1.4   */  public Clipboard getSystemSelection()  {    return null;  }  /**   * Returns the accelerator key mask for menu shortcuts. The default is   * <code>Event.CTRL_MASK</code>.  A toolkit must override this method   * to change the default.   *   * @return The key mask for the menu accelerator key.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  public int getMenuShortcutKeyMask()  {    return Event.CTRL_MASK;  }  public boolean getLockingKeyState(int keyCode)  {    if (keyCode != KeyEvent.VK_CAPS_LOCK        && keyCode != KeyEvent.VK_NUM_LOCK        && keyCode != KeyEvent.VK_SCROLL_LOCK)      throw new IllegalArgumentException();    throw new UnsupportedOperationException();  }  public void setLockingKeyState(int keyCode, boolean on)  {    if (keyCode != KeyEvent.VK_CAPS_LOCK        && keyCode != KeyEvent.VK_NUM_LOCK        && keyCode != KeyEvent.VK_SCROLL_LOCK)      throw new IllegalArgumentException();    throw new UnsupportedOperationException();  }  /**   * Returns the native container object of the specified component.  This   * method is necessary because the parent component might be a lightweight   * component.   *   * @param component The component to fetch the native container for.   * @return The native container object for this component.   */  protected static Container getNativeContainer(Component component)  {    component = component.getParent();    while (true)      {        if (component == null)          return null;        if (! (component instanceof Container))          {            component = component.getParent();            continue;          }        if (component.getPeer() instanceof LightweightPeer)          {            component = component.getParent();            continue;          }        return (Container) component;      }  }  public Cursor createCustomCursor(Image cursor, Point hotSpot, String name)  {    // Presumably the only reason this isn't abstract is for backwards    // compatibility? FIXME?    return null;  }  public Dimension getBestCursorSize(int preferredWidth, int preferredHeight)  {    return new Dimension (0,0);  }  public int getMaximumCursorColors()  {    return 0;  }  /**   * @since 1.4   */  public boolean isFrameStateSupported(int state)  {    return false;  }  /**   * Returns the value of the property with the specified name, or the   * default value if the property does not exist.   *   * @param key The name of the property to retrieve.   * @param defThe default value of the property.   */  public static String getProperty(String key, String def)  {    return props.getProperty(key, def);  }  /**   * Returns the event queue for the applet.  Despite the word "System"   * in the name of this method, there is no guarantee that the same queue   * is shared system wide.   *   * @return The event queue for this applet (or application)   */  public final EventQueue getSystemEventQueue()  {    return getSystemEventQueueImpl();  }  /**   * // FIXME: What does this do?   */  protected abstract EventQueue getSystemEventQueueImpl();  /**   * @since 1.3   */  public abstract DragSourceContextPeer    createDragSourceContextPeer(DragGestureEvent e);  /**   * @since 1.3   */  public DragGestureRecognizer    createDragGestureRecognizer(Class recognizer, DragSource ds,                                Component comp, int actions,                                DragGestureListener l)  {    return null;  }  public final Object getDesktopProperty(String propertyName)  {    return desktopProperties.get(propertyName);  }  protected final void setDesktopProperty(String name, Object newValue)  {    Object oldValue = getDesktopProperty(name);    desktopProperties.put(name, newValue);    desktopPropsSupport.firePropertyChange(name, oldValue, newValue);  }  protected Object lazilyLoadDesktopProperty(String name)  {    // FIXME - what is this??    return null;  }  protected void initializeDesktopProperties()  {    // Overridden by toolkit implementation?  }  public void addPropertyChangeListener(String name,                                        PropertyChangeListener pcl)  {    desktopPropsSupport.addPropertyChangeListener(name, pcl);  }  public void removePropertyChangeListener(String name,                                           PropertyChangeListener pcl)  {    desktopPropsSupport.removePropertyChangeListener(name, pcl);  }  /**   * @since 1.4   */  public PropertyChangeListener[] getPropertyChangeListeners()  {    return desktopPropsSupport.getPropertyChangeListeners();  }  /**   * @since 1.4   */  public PropertyChangeListener[] getPropertyChangeListeners(String name)  {    return desktopPropsSupport.getPropertyChangeListeners(name);  }  public void addAWTEventListener(AWTEventListener listener, long eventMask)  {    // SecurityManager s = System.getSecurityManager();    // if (s != null)    //  s.checkPermission(AWTPermission("listenToAllAWTEvents"));    // FIXME  }  public void removeAWTEventListener(AWTEventListener listener)  {    // FIXME  }  /**   * @since 1.4   */  public AWTEventListener[] getAWTEventListeners()  {    return null;  }  /**   * @since 1.4   */  public AWTEventListener[] getAWTEventListeners(long mask)  {    return null;  }  /**   * @since 1.3   */  public abstract Map mapInputMethodHighlight(InputMethodHighlight highlight);} // class Toolkit

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美唯美清纯偷拍| 97久久精品人人澡人人爽| 国产日产亚洲精品系列| 在线观看91视频| 国产高清久久久| 日韩一区精品视频| 亚洲天堂福利av| 久久久美女毛片| 日韩欧美国产综合在线一区二区三区 | 国产不卡一区视频| 日本一不卡视频| 一区二区三区在线视频观看58| 国产午夜久久久久| 精品久久久久久久人人人人传媒| 欧美性感一类影片在线播放| 日韩精品中午字幕| 国产福利一区二区三区在线视频| 一区二区三区在线影院| 国产精品毛片高清在线完整版| 日韩一区二区三区视频| 欧美做爰猛烈大尺度电影无法无天| 国产 日韩 欧美大片| 黄色资源网久久资源365| 日韩制服丝袜av| 亚洲一区二区高清| 亚洲精品老司机| 国产精品三级av在线播放| 久久一日本道色综合| 欧美mv日韩mv亚洲| 日韩无一区二区| 日韩欧美一级在线播放| 日本道免费精品一区二区三区| 亚洲欧美一区二区在线观看| 久久久精品综合| 精品国产免费久久| 精品国产91洋老外米糕| www国产精品av| 久久网这里都是精品| 日韩精品最新网址| 精品国产一区久久| 精品国产一区二区三区久久影院 | www.成人在线| 成人永久免费视频| 99久久亚洲一区二区三区青草| 成人精品高清在线| 91色九色蝌蚪| 在线视频一区二区三区| 欧美综合亚洲图片综合区| 欧美中文字幕一二三区视频| 欧美三级韩国三级日本三斤| 欧美日韩中字一区| 欧美一区二区三区视频在线观看| 日韩一区二区不卡| 久久伊99综合婷婷久久伊| 国产日韩欧美激情| 1024成人网色www| 一区二区三区精品久久久| 午夜视频一区二区三区| 麻豆91免费观看| 国产夫妻精品视频| 一本色道a无线码一区v| 欧美日韩大陆一区二区| 精品动漫一区二区三区在线观看 | 高清不卡在线观看| 97久久精品人人爽人人爽蜜臀| 色嗨嗨av一区二区三区| 在线电影院国产精品| 久久久噜噜噜久噜久久综合| 天天影视网天天综合色在线播放| 久久99热这里只有精品| 国产成人精品免费一区二区| 91丨porny丨国产| 欧美另类高清zo欧美| 国产亚洲成年网址在线观看| 亚洲免费视频中文字幕| 奇米色777欧美一区二区| 国产乱码精品一品二品| 91猫先生在线| 欧美变态tickling挠脚心| ●精品国产综合乱码久久久久| 婷婷中文字幕综合| 国产.精品.日韩.另类.中文.在线.播放| 色噜噜夜夜夜综合网| 欧美成人bangbros| 一区二区三区四区五区视频在线观看 | 欧美日本免费一区二区三区| 国产亚洲欧美日韩日本| 天天爽夜夜爽夜夜爽精品视频 | 在线播放中文一区| 中文字幕的久久| 日本一区中文字幕| av亚洲精华国产精华精| 日韩欧美中文一区| 一个色在线综合| 国产成人精品网址| 欧美电影在线免费观看| 中文字幕中文字幕一区| 捆绑紧缚一区二区三区视频| 91久久精品网| 欧美极品xxx| 看片的网站亚洲| 在线观看亚洲成人| 国产女主播在线一区二区| 免费人成在线不卡| 欧美亚洲高清一区| 国产精品不卡在线观看| 国模冰冰炮一区二区| 欧美精品乱码久久久久久| 亚洲色图视频网站| 国产jizzjizz一区二区| 日韩精品一区二区三区在线播放 | 国产欧美日韩综合精品一区二区 | 懂色一区二区三区免费观看| 欧美高清视频在线高清观看mv色露露十八| 国产精品人妖ts系列视频| 激情综合网av| 日韩亚洲欧美中文三级| 午夜不卡av免费| 在线视频一区二区三| 亚洲人成影院在线观看| 色欧美日韩亚洲| 中文字幕亚洲一区二区av在线| 国产999精品久久久久久绿帽| 精品国产一二三区| 久久99最新地址| 欧美mv日韩mv亚洲| 久久99久久99小草精品免视看| 91精品国模一区二区三区| 亚洲成人av电影在线| 欧美专区日韩专区| 亚洲欧美一区二区三区国产精品 | 欧美在线看片a免费观看| 椎名由奈av一区二区三区| 成人av网站在线| 欧美国产日产图区| 成人综合婷婷国产精品久久蜜臀| 久久精品亚洲一区二区三区浴池| 久久国产乱子精品免费女| 欧美videossexotv100| 免费观看一级特黄欧美大片| 日韩欧美一区二区免费| 久久精品国产一区二区| 精品日韩99亚洲| 秋霞av亚洲一区二区三| 国产专区综合网| 亚洲精品在线网站| 国产成人精品一区二| 国产精品水嫩水嫩| 99久久精品免费精品国产| 亚洲综合在线视频| 7777精品伊人久久久大香线蕉最新版| 婷婷综合另类小说色区| 精品卡一卡二卡三卡四在线| 国产精品一卡二卡| 国产精品久久久久影院亚瑟| 色综合欧美在线视频区| 五月婷婷久久丁香| 日韩欧美国产一区二区在线播放 | 欧美精品日韩一区| 久久99久久精品欧美| 欧美国产精品一区二区三区| 日本韩国欧美在线| 三级影片在线观看欧美日韩一区二区| 日韩三级在线免费观看| 国产成人精品综合在线观看| 亚洲日本韩国一区| 欧美一区二区三区啪啪| 国产精品资源站在线| 亚洲免费色视频| 日韩视频在线永久播放| 国产成人免费视频网站| 一区二区三区四区av| 日韩精品一区二区三区四区视频 | 一区二区三区免费看视频| 69堂国产成人免费视频| 国产99久久久国产精品潘金网站| 亚洲国产精品尤物yw在线观看| 亚洲精品一区二区在线观看| 色综合激情久久| 久久激情五月婷婷| 亚洲免费视频中文字幕| 精品国产不卡一区二区三区| 色www精品视频在线观看| 六月丁香婷婷久久| 亚洲伦在线观看| 26uuu精品一区二区在线观看| 91久久国产综合久久| 精品在线播放免费| 一区二区在线观看免费视频播放| 欧美成人aa大片| 91久久精品日日躁夜夜躁欧美| 国产乱国产乱300精品| 亚洲午夜羞羞片| 国产精品美女久久久久aⅴ | 一区二区三区在线视频观看| 欧美va天堂va视频va在线| 欧美日韩中文一区| av不卡免费电影| 国产一区二区女| 欧美日韩国产影片|