亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产精品久久夜| 在线这里只有精品| 亚洲精品在线三区| 黑人巨大精品欧美一区| 日韩精品一区二区在线观看| 国产在线一区二区综合免费视频| 久久久久久一级片| 99久久精品情趣| 亚洲午夜一二三区视频| 欧美精品电影在线播放| 激情欧美日韩一区二区| 国产精品美女久久久久久久 | 欧美熟乱第一页| 香蕉影视欧美成人| 久久色.com| 色视频欧美一区二区三区| 丝袜美腿亚洲一区| 国产午夜精品福利| 欧美亚洲国产怡红院影院| 麻豆国产一区二区| |精品福利一区二区三区| 欧美色欧美亚洲另类二区| 久久99国内精品| 日韩理论片一区二区| 51精品秘密在线观看| 国产精品夜夜爽| 亚洲主播在线观看| 久久亚洲一区二区三区明星换脸| av网站免费线看精品| 日本欧美久久久久免费播放网| 国产肉丝袜一区二区| 欧洲视频一区二区| 国产一区三区三区| 亚洲国产精品久久一线不卡| 国产午夜亚洲精品理论片色戒| 色婷婷亚洲综合| 国内精品久久久久影院色 | 欧美另类z0zxhd电影| 国产精品一区三区| 图片区小说区区亚洲影院| 中文字幕欧美激情| 日韩一区二区三区免费观看| 91在线观看下载| 韩国理伦片一区二区三区在线播放| 亚洲美女屁股眼交3| 久久综合一区二区| 欧美高清视频在线高清观看mv色露露十八| 成人午夜精品在线| 韩国一区二区三区| 日韩高清中文字幕一区| 一区2区3区在线看| 国产精品国产a| 国产欧美日本一区视频| 欧美成人video| 欧美日韩免费视频| 91在线观看污| 不卡av免费在线观看| 国产在线一区观看| 精品中文字幕一区二区小辣椒| 亚洲高清视频中文字幕| 亚洲同性gay激情无套| 国产免费观看久久| 久久精品人人做| 2023国产精品自拍| 日韩精品一区二区三区老鸭窝| 91亚洲男人天堂| 成人av集中营| 成人综合在线视频| 国产不卡视频在线播放| 久久精工是国产品牌吗| 蜜臂av日日欢夜夜爽一区| 丝袜a∨在线一区二区三区不卡 | 琪琪久久久久日韩精品| 亚洲h在线观看| 亚洲在线视频网站| 亚洲欧洲制服丝袜| 亚洲一区视频在线| 亚洲国产精品视频| 日韩影院在线观看| 琪琪久久久久日韩精品| 久久国产麻豆精品| 国产精品影视天天线| 粉嫩欧美一区二区三区高清影视 | 美女视频网站久久| 韩国在线一区二区| 国产成人精品网址| 成人app网站| 91免费看`日韩一区二区| 色婷婷狠狠综合| 欧亚洲嫩模精品一区三区| 欧美日韩视频专区在线播放| 欧美精品一二三四| 精品少妇一区二区三区日产乱码 | 91精品国产综合久久香蕉麻豆| 欧美日韩免费视频| 337p日本欧洲亚洲大胆精品| 国产三级精品三级| 亚洲一区二区三区爽爽爽爽爽 | 亚洲一区二区三区爽爽爽爽爽 | 国产精品久久久久久久久搜平片 | 伊人色综合久久天天人手人婷| 亚洲午夜影视影院在线观看| 青青草视频一区| 国产成人综合网站| 在线看国产一区| 欧美成人女星排行榜| 亚洲国产成人在线| 日韩中文字幕区一区有砖一区| 韩国女主播成人在线观看| 91在线看国产| 精品久久久久久综合日本欧美| 国产精品理论片| 丝瓜av网站精品一区二区| 国产精品系列在线播放| 欧美午夜在线观看| 久久网站热最新地址| 亚洲在线中文字幕| 丰满少妇在线播放bd日韩电影| 欧美日韩国产精品成人| 久久精品一区二区三区不卡| 亚洲一区二区五区| 国产成人三级在线观看| 精品视频色一区| 中文字幕av一区二区三区高| 午夜电影一区二区三区| 成人综合婷婷国产精品久久免费| 欧美艳星brazzers| 国产女人18水真多18精品一级做| 亚洲va国产va欧美va观看| 不卡在线视频中文字幕| 欧美一区二区人人喊爽| 亚洲欧洲一区二区在线播放| 久久国产夜色精品鲁鲁99| eeuss鲁片一区二区三区在线看| 欧美理论在线播放| 亚洲欧美日韩国产成人精品影院 | 另类中文字幕网| 在线观看视频一区| 亚洲素人一区二区| 国产精品亚洲综合一区在线观看| 欧美精品乱码久久久久久| 1000部国产精品成人观看| 精品午夜久久福利影院| 欧美精品1区2区3区| 亚洲欧美日韩国产综合| 国产凹凸在线观看一区二区| 欧美一区二区三区免费| 亚洲风情在线资源站| 色伊人久久综合中文字幕| 国产午夜精品一区二区三区视频| 日本美女一区二区三区视频| 91黄色免费版| 亚洲视频狠狠干| www.性欧美| 国产精品蜜臀在线观看| 国产激情偷乱视频一区二区三区| 日韩一区二区三区在线| 日本不卡一二三| 4438x成人网最大色成网站| 亚洲一区二区不卡免费| 91国偷自产一区二区开放时间 | 日韩精品91亚洲二区在线观看| 日本丰满少妇一区二区三区| 中文字幕亚洲电影| 不卡的av网站| 亚洲欧美色图小说| 欧美怡红院视频| 日韩精品一二三区| 欧美一区二区三区日韩视频| 久久电影国产免费久久电影| 日韩欧美国产一区在线观看| 蜜桃av一区二区三区电影| 欧美电视剧在线观看完整版| 国产在线精品免费av| 久久久久久久久久久黄色| 国产成人综合网站| 亚洲国产精品av| 91猫先生在线| 视频一区二区欧美| 日韩欧美亚洲国产另类| 国产麻豆精品在线| 国产精品狼人久久影院观看方式| k8久久久一区二区三区| 亚洲日本在线看| 欧美精选午夜久久久乱码6080| 亚洲成人一区二区在线观看| 91精品国产综合久久久久久久久久| 日韩中文字幕1| 久久精品一区二区三区不卡牛牛| 99久久精品免费| 午夜精品久久久| 精品欧美一区二区在线观看 | 亚洲一区中文在线| 欧美美女直播网站| 国内欧美视频一区二区| 亚洲免费在线播放| 欧美精品xxxxbbbb| 福利视频网站一区二区三区| 亚洲午夜久久久久久久久电影网| 日韩视频免费观看高清在线视频|