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

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

?? toolkit.java

?? gcc的組建
?? 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一区二区三区免费野_久草精品视频
97久久精品人人做人人爽50路| 经典一区二区三区| 日韩伦理av电影| 中文字幕精品综合| 亚洲老妇xxxxxx| 亚洲国产精品影院| 蜜桃久久av一区| 丰满少妇在线播放bd日韩电影| 99麻豆久久久国产精品免费优播| 色又黄又爽网站www久久| 日韩毛片一二三区| 一区二区三区欧美在线观看| 午夜av一区二区三区| 成人在线视频一区| 韩国精品一区二区| 欧洲生活片亚洲生活在线观看| 欧美一区二区三区精品| 国产精品久久久久久久久免费丝袜 | 欧美极品aⅴ影院| 三级久久三级久久| 色欧美88888久久久久久影院| 日韩欧美自拍偷拍| 亚洲午夜激情av| 不卡欧美aaaaa| 精品国产91亚洲一区二区三区婷婷| 日韩毛片一二三区| 国产精品一二二区| 国内久久精品视频| 欧美一区二区日韩一区二区| 亚洲美女偷拍久久| www.66久久| 日本成人中文字幕| 一区二区三区成人| 国产一区二区三区在线看麻豆| 91精品免费在线| 午夜日韩在线观看| 91原创在线视频| 国产精品久久久久久久久图文区| 国产在线播放一区| 精品电影一区二区| 亚洲激情五月婷婷| 色香色香欲天天天影视综合网| 国产精品动漫网站| 色综合久久久网| 亚洲激情中文1区| 欧美日韩精品一区二区在线播放| 亚洲成人tv网| 日韩三级在线免费观看| 狠狠v欧美v日韩v亚洲ⅴ| 久久久久久亚洲综合| 粉嫩一区二区三区在线看| 自拍视频在线观看一区二区| 91九色02白丝porn| 久久91精品国产91久久小草| xvideos.蜜桃一区二区| 日本91福利区| 天堂久久久久va久久久久| 4hu四虎永久在线影院成人| 奇米精品一区二区三区在线观看一 | 亚洲视频在线一区二区| 午夜在线成人av| 欧美人动与zoxxxx乱| 秋霞电影网一区二区| 日韩你懂的电影在线观看| 精品中文字幕一区二区| 亚洲国产高清在线| 日韩二区在线观看| 国产精品欧美极品| 欧美综合天天夜夜久久| 国产一区啦啦啦在线观看| 国产精品福利一区二区| 欧美人与z0zoxxxx视频| 成人黄色片在线观看| 欧美日本一区二区| 亚洲天堂免费看| 精品国产不卡一区二区三区| 色婷婷精品大视频在线蜜桃视频| 九色|91porny| 日韩精品一二三四| 亚洲欧洲综合另类在线| 精品国产伦一区二区三区免费| 欧美综合久久久| gogo大胆日本视频一区| 国产一区二区三区蝌蚪| 一二三区精品视频| 国产亚洲综合性久久久影院| 在线观看成人小视频| 免费成人在线播放| 亚洲午夜久久久久中文字幕久| 国产精品麻豆久久久| 日韩午夜精品电影| 国产精品一二三区| 免费看黄色91| 五月天一区二区三区| 亚洲一卡二卡三卡四卡无卡久久 | 成人黄色a**站在线观看| 日韩精品福利网| 蜜臀久久久久久久| 亚洲伊人伊色伊影伊综合网| 久久欧美中文字幕| 日韩女优视频免费观看| 欧美一区二区精品在线| aa级大片欧美| 欧美日韩精品三区| 日韩精品一区二区在线| 精品久久一二三区| 欧美高清一级片在线观看| 亚洲视频一二三区| 一区二区三区中文字幕电影| 日韩国产在线一| 久久99蜜桃精品| av爱爱亚洲一区| 91精品国产入口| 国产欧美日韩卡一| 亚洲欧美激情一区二区| 亚洲激情第一区| 久久av资源网| 亚洲777理论| 丰满白嫩尤物一区二区| 欧美日韩国产在线观看| 欧美国产一区视频在线观看| 一区二区三区中文字幕电影 | 久久精子c满五个校花| 精品国产一区久久| 久久久一区二区| 久久99精品一区二区三区| 欧美一区二区在线看| 一区二区三区日韩在线观看| 91色porny| 亚洲影视资源网| 欧美一三区三区四区免费在线看| 一区二区三区精品久久久| 在线观看视频一区二区欧美日韩| 亚洲欧美在线视频观看| 在线看一区二区| 香蕉久久夜色精品国产使用方法| 欧美日韩中文另类| 最近日韩中文字幕| 成人av网站在线观看| 国产偷国产偷精品高清尤物| 国产高清精品网站| 国产欧美一区二区精品性| 韩国女主播一区二区三区| 欧美一级久久久| 国内不卡的二区三区中文字幕 | 国产网站一区二区| 精品中文字幕一区二区小辣椒 | 欧美巨大另类极品videosbest | 国产大陆亚洲精品国产| 精品奇米国产一区二区三区| 日韩高清在线观看| 7777精品伊人久久久大香线蕉| 亚洲bt欧美bt精品777| 欧美电影影音先锋| 激情综合网av| 国产精品久久综合| 欧美最猛黑人xxxxx猛交| 美女在线一区二区| 国产欧美日韩三级| 欧美日韩久久一区二区| 精品一区二区三区欧美| 国产精品三级视频| 欧美日韩免费高清一区色橹橹| 美腿丝袜亚洲色图| 亚洲最大的成人av| 国产午夜精品一区二区三区视频| 成人丝袜18视频在线观看| 亚洲18女电影在线观看| 欧美日韩一区国产| 国产精品白丝av| 日本一不卡视频| 91久久精品一区二区二区| 国内成人免费视频| 日韩高清一区在线| 亚洲美女视频在线观看| 久久婷婷成人综合色| 欧美日韩国产精品自在自线| 成人一区二区三区视频| 日韩精品一级二级 | 99这里都是精品| 久久精品二区亚洲w码| 日韩中文字幕区一区有砖一区 | 日韩一二三区视频| 欧美天堂一区二区三区| 91伊人久久大香线蕉| 成人免费av在线| 成熟亚洲日本毛茸茸凸凹| 精品在线播放午夜| 日韩av网站免费在线| 亚洲一区二区三区视频在线 | 高清不卡在线观看| 国产中文一区二区三区| 亚洲欧洲精品成人久久奇米网| 欧美一区二区三区免费在线看| 欧美视频三区在线播放| 欧美理论片在线| 在线视频你懂得一区二区三区| 欧美三电影在线| 91精品欧美福利在线观看| 精品国产髙清在线看国产毛片|