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

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

?? toolkit.java

?? linux下編程用 編譯軟件
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/* Toolkit.java -- AWT Toolkit superclass   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005   Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package java.awt;import java.awt.datatransfer.Clipboard;import java.awt.dnd.DragGestureEvent;import java.awt.dnd.DragGestureListener;import java.awt.dnd.DragGestureRecognizer;import java.awt.dnd.DragSource;import java.awt.dnd.peer.DragSourceContextPeer;import java.awt.event.AWTEventListener;import java.awt.event.KeyEvent;import java.awt.im.InputMethodHighlight;import java.awt.image.ColorModel;import java.awt.image.ImageObserver;import java.awt.image.ImageProducer;import java.awt.peer.ButtonPeer;import java.awt.peer.CanvasPeer;import java.awt.peer.CheckboxMenuItemPeer;import java.awt.peer.CheckboxPeer;import java.awt.peer.ChoicePeer;import java.awt.peer.DialogPeer;import java.awt.peer.FileDialogPeer;import java.awt.peer.FontPeer;import java.awt.peer.FramePeer;import java.awt.peer.LabelPeer;import java.awt.peer.LightweightPeer;import java.awt.peer.ListPeer;import java.awt.peer.MenuBarPeer;import java.awt.peer.MenuItemPeer;import java.awt.peer.MenuPeer;import java.awt.peer.PanelPeer;import java.awt.peer.PopupMenuPeer;import java.awt.peer.ScrollPanePeer;import java.awt.peer.ScrollbarPeer;import java.awt.peer.TextAreaPeer;import java.awt.peer.TextFieldPeer;import java.awt.peer.WindowPeer;import java.beans.PropertyChangeListener;import java.beans.PropertyChangeSupport;import java.net.URL;import java.util.Map;import java.util.Properties;/** * The AWT system uses a set of native peer objects to implement its * widgets.  These peers are provided by a peer toolkit, that is accessed * via a subclass of this superclass.  The system toolkit is retrieved * by the static methods <code>getDefaultToolkit</code>.  This method * determines the system toolkit by examining the system property * <code>awt.toolkit</code>.  That property is set to the name of the * <code>Toolkit</code> subclass for the specified peer set.  If the * <code>awt.toolkit</code> property is not set, then the default * toolkit <code>gnu.java.awt.peer.gtk.GtkToolkit</code> is used.  This * toolkit creates its peers using the GTK+ toolkit. * * @author Aaron M. Renn (arenn@urbanophile.com) */public abstract class Toolkit{  /** The default toolkit name. */  private static String default_toolkit_name    = gnu.classpath.Configuration.default_awt_peer_toolkit;  /**   * The toolkit in use.  Once we load it, we don't ever change it   * if the awt.toolkit property is set.   */  private static Toolkit toolkit;  /** The toolkit properties. */  private static Properties props = new Properties();  protected final Map desktopProperties = new Properties();  protected final PropertyChangeSupport desktopPropsSupport    = new PropertyChangeSupport(this);  /**   * Default constructor for subclasses.   */  public Toolkit()  {  }  /**   * Creates a peer object for the specified <code>Button</code>.   *   * @param target The <code>Button</code> to create the peer for.   *    * @return The peer for the specified <code>Button</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ButtonPeer createButton(Button target);  /**   * Creates a peer object for the specified <code>TextField</code>.   *   * @param target The <code>TextField</code> to create the peer for.   *   * @return The peer for the specified <code>TextField</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract TextFieldPeer createTextField(TextField target);  /**   * Creates a peer object for the specified <code>Label</code>.   *   * @param target The <code>Label</code> to create the peer for.   *   * @return The peer for the specified <code>Label</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract LabelPeer createLabel(Label target);  /**   * Creates a peer object for the specified <code>List</code>.   *   * @param target The <code>List</code> to create the peer for.   *   * @return The peer for the specified <code>List</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ListPeer createList(List target);  /**   * Creates a peer object for the specified <code>Checkbox</code>.   *   * @param target The <code>Checkbox</code> to create the peer for.   *   * @return The peer for the specified <code>Checkbox</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract CheckboxPeer createCheckbox(Checkbox target);  /**   * Creates a peer object for the specified <code>Scrollbar</code>.   *   * @param target The <code>Scrollbar</code> to create the peer for.   *   * @return The peer for the specified <code>Scrollbar</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ScrollbarPeer createScrollbar(Scrollbar target);  /**   * Creates a peer object for the specified <code>ScrollPane</code>.   *   * @param target The <code>ScrollPane</code> to create the peer for.   *   * @return The peer for the specified <code>ScrollPane</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ScrollPanePeer createScrollPane(ScrollPane target);  /**   * Creates a peer object for the specified <code>TextArea</code>.   *   * @param target The <code>TextArea</code> to create the peer for.   *   * @return The peer for the specified <code>TextArea</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract TextAreaPeer createTextArea(TextArea target);  /**   * Creates a peer object for the specified <code>Choice</code>.   *   * @param target The <code>Choice</code> to create the peer for.   *   * @return The peer for the specified <code>Choice</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract ChoicePeer createChoice(Choice target);  /**   * Creates a peer object for the specified <code>Frame</code>.   *   * @param target The <code>Frame</code> to create the peer for.   *   * @return The peer for the specified <code>Frame</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract FramePeer createFrame(Frame target);  /**   * Creates a peer object for the specified <code>Canvas</code>.   *   * @param target The <code>Canvas</code> to create the peer for.   *   * @return The peer for the specified <code>Canvas</code> object.   */  protected abstract CanvasPeer createCanvas(Canvas target);  /**   * Creates a peer object for the specified <code>Panel</code>.   *   * @param target The <code>Panel</code> to create the peer for.   *   * @return The peer for the specified <code>Panel</code> object.   */  protected abstract PanelPeer createPanel(Panel target);  /**   * Creates a peer object for the specified <code>Window</code>.   *   * @param target The <code>Window</code> to create the peer for.   *   * @return The peer for the specified <code>Window</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract WindowPeer createWindow(Window target);  /**   * Creates a peer object for the specified <code>Dialog</code>.   *   * @param target The dialog to create the peer for   *   * @return The peer for the specified font name.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract DialogPeer createDialog(Dialog target);  /**   * Creates a peer object for the specified <code>MenuBar</code>.   *   * @param target The <code>MenuBar</code> to create the peer for.   *   * @return The peer for the specified <code>MenuBar</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuBarPeer createMenuBar(MenuBar target);  /**   * Creates a peer object for the specified <code>Menu</code>.   *   * @param target The <code>Menu</code> to create the peer for.   *   * @return The peer for the specified <code>Menu</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuPeer createMenu(Menu target);  /**   * Creates a peer object for the specified <code>PopupMenu</code>.   *   * @param target The <code>PopupMenu</code> to create the peer for.   *   * @return The peer for the specified <code>PopupMenu</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract PopupMenuPeer createPopupMenu(PopupMenu target);  /**   * Creates a peer object for the specified <code>MenuItem</code>.   *   * @param target The <code>MenuItem</code> to create the peer for.   *   * @return The peer for the specified <code>MenuItem</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract MenuItemPeer createMenuItem(MenuItem target);  /**   * Creates a peer object for the specified <code>FileDialog</code>.   *   * @param target The <code>FileDialog</code> to create the peer for.   *   * @return The peer for the specified <code>FileDialog</code> object.   *   * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.   */  protected abstract FileDialogPeer createFileDialog(FileDialog target);  /**   * Creates a peer object for the specified <code>CheckboxMenuItem</code>.   *   * @param target The <code>CheckboxMenuItem</code> to create the peer for.   *   * @return The peer for the specified <code>CheckboxMenuItem</code> object.   *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧洲精品在线观看| 国产日韩欧美制服另类| 欧美日本在线观看| 中文字幕av免费专区久久| 国产乱码精品一区二区三区忘忧草 | av成人老司机| 日韩三区在线观看| 紧缚奴在线一区二区三区| 精品国产123| 国产美女一区二区三区| 国产亚洲精品资源在线26u| 成人免费看的视频| 亚洲精品videosex极品| 99精品国产99久久久久久白柏| 91一区在线观看| 天堂精品中文字幕在线| 91国产成人在线| 蜜臀av亚洲一区中文字幕| 国产日韩欧美高清| 日本道色综合久久| 麻豆精品一区二区三区| 中文字幕一区二区在线观看| 91官网在线观看| 毛片不卡一区二区| 中文字幕av不卡| 91福利社在线观看| 日韩精品乱码av一区二区| 欧美精品一区二区三区高清aⅴ| 99精品国产一区二区三区不卡| 亚洲福利视频导航| 欧美国产精品一区二区| 欧美日韩激情一区二区三区| 国产美女视频一区| 丝袜美腿高跟呻吟高潮一区| 精品久久一区二区| 欧洲人成人精品| 麻豆一区二区三| 亚洲乱码国产乱码精品精小说| 日韩一区二区三区高清免费看看| 成人综合在线观看| 亚洲激情第一区| 国产欧美日本一区视频| 91精品国产全国免费观看| 97aⅴ精品视频一二三区| 日韩电影在线免费观看| 国产日韩欧美一区二区三区乱码 | 欧美一级高清片| 一本大道av一区二区在线播放| 寂寞少妇一区二区三区| 丝袜美腿成人在线| 亚洲精品精品亚洲| 国产肉丝袜一区二区| 欧美电影一区二区三区| 国产乱码一区二区三区| 男男视频亚洲欧美| 午夜视频一区在线观看| 精品国产电影一区二区| 国产成人丝袜美腿| 琪琪久久久久日韩精品| 一色屋精品亚洲香蕉网站| 久久久久久久久久久电影| 欧美一区二区三区在线看| 国产一区二区不卡老阿姨| 日本三级亚洲精品| 婷婷成人综合网| 26uuu亚洲婷婷狠狠天堂| 日韩一级黄色片| 风间由美性色一区二区三区| 麻豆成人综合网| 麻豆91免费看| 久久国内精品视频| 六月丁香婷婷色狠狠久久| 午夜激情综合网| 日韩主播视频在线| 日韩精品一级中文字幕精品视频免费观看| 国产日韩欧美在线一区| 精品女同一区二区| 久久午夜电影网| 精品三级av在线| 久久综合狠狠综合久久综合88| 色成年激情久久综合| 精品国产凹凸成av人网站| 欧美日韩精品一区二区三区四区| 91成人免费在线| 欧美在线观看18| 欧美精品第一页| 日韩精品一区二区三区视频播放 | 91麻豆精品国产91久久久久久| 欧美在线视频日韩| 秋霞午夜av一区二区三区| 日本不卡高清视频| 国内精品写真在线观看| 久久99精品久久久久久久久久久久| 日本aⅴ亚洲精品中文乱码| 亚洲国产岛国毛片在线| 亚洲国产精品黑人久久久| 国产精品久久三区| 国产日韩成人精品| 亚洲欧美二区三区| 五月婷婷另类国产| 国产一区免费电影| 91在线一区二区三区| 欧美日韩午夜在线视频| 蜜臀av性久久久久蜜臀av麻豆| 国产剧情一区在线| 99re亚洲国产精品| 欧美私人免费视频| ww亚洲ww在线观看国产| 欧美高清性hdvideosex| 欧美视频日韩视频在线观看| 91一区二区在线观看| 成人国产精品免费网站| 欧美在线免费视屏| 2020国产精品自拍| 亚洲黄色录像片| 久久99久久精品| 99riav久久精品riav| 91精品国产综合久久福利| 国产欧美一区二区精品秋霞影院 | 国产亚洲精品久| 午夜精品一区在线观看| 国产精品一卡二卡| 亚洲国产裸拍裸体视频在线观看乱了| 美女网站视频久久| www.亚洲在线| 粉嫩13p一区二区三区| 福利一区二区在线观看| 在线电影欧美成精品| 国产精品美日韩| 男女男精品网站| 色av一区二区| 欧美成人精品高清在线播放| 成人免费在线播放视频| 日韩影院在线观看| 91女厕偷拍女厕偷拍高清| 精品精品国产高清a毛片牛牛| 国产精品高潮久久久久无| 亚洲国产三级在线| 韩国三级在线一区| 欧美日韩成人综合| 日韩毛片一二三区| 国产精品亲子乱子伦xxxx裸| 美女在线一区二区| 国产乱人伦精品一区二区在线观看 | 7777精品伊人久久久大香线蕉 | 欧美日韩国产高清一区二区 | 国产精品美女久久久久久久网站| 亚洲自拍偷拍av| 一区二区三区高清在线| 国产成人av网站| 7777女厕盗摄久久久| 国产欧美日韩激情| 国产精品中文有码| 日韩精品一区二区三区三区免费 | 免费成人在线网站| 日本久久电影网| 国产日韩精品一区| 国产精品一区二区久久不卡| 97精品视频在线观看自产线路二| 2023国产精品自拍| 国产夫妻精品视频| 久久久久国产精品麻豆ai换脸| 亚洲高清免费观看高清完整版在线观看 | 99re亚洲国产精品| 国产精品久久综合| 午夜激情久久久| 欧美一区二区网站| 国产精品久久久久久久久久久免费看| 国产麻豆一精品一av一免费| 91精品国产综合久久国产大片 | 91免费国产在线| 亚洲精品久久久蜜桃| 色综合久久99| 亚洲综合一区二区三区| 在线观看日韩电影| 性久久久久久久久| 91精品国产福利| 婷婷激情综合网| 欧美精品一区二区三区高清aⅴ | 一区二区三区在线视频免费| 成人av免费在线观看| 亚洲视频精选在线| 欧美三级电影在线观看| 日韩电影一二三区| 国产成人精品一区二区三区四区| 夜夜夜精品看看| 在线播放91灌醉迷j高跟美女| 日本欧美大码aⅴ在线播放| 欧美三级韩国三级日本一级| 蜜桃视频一区二区| 欧美mv和日韩mv的网站| 粉嫩一区二区三区性色av| 日韩一区二区在线播放| 亚洲妇女屁股眼交7| 日本韩国欧美国产| 蜜桃久久久久久久| 日本一区二区在线不卡| 国产综合久久久久影院| 亚洲欧美日韩在线不卡| 99国产精品国产精品毛片|