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

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

?? package.java

?? linux下編程用 編譯軟件
?? JAVA
字號(hào):
/* Package.java -- information about a package   Copyright (C) 2000, 2001, 2002, 2003, 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.lang;import java.net.URL;import java.util.NoSuchElementException;import java.util.StringTokenizer;/** * Everything you ever wanted to know about a package. This class makes it * possible to attach specification and implementation information to a * package as explained in the * <a href="http://java.sun.com/products/jdk/1.3/docs/guide/versioning/spec/VersioningSpecification.html#PackageVersionSpecification">Package Versioning Specification</a> * section of the * <a href="http://java.sun.com/products/jdk/1.3/docs/guide/versioning/spec/VersioningSpecification.html">Product Versioning Specification</a>. * It also allows packages to be sealed with respect to the originating URL. * * <p>The most useful method is the <code>isCompatibleWith()</code> method that * compares a desired version of a specification with the version of the * specification as implemented by a package. A package is considered * compatible with another version if the version of the specification is * equal or higher then the requested version. Version numbers are represented * as strings of positive numbers separated by dots (e.g. "1.2.0"). * The first number is called the major number, the second the minor, * the third the micro, etc. A version is considered higher then another * version if it has a bigger major number then the another version or when * the major numbers of the versions are equal if it has a bigger minor number * then the other version, etc. (If a version has no minor, micro, etc numbers * then they are considered the be 0.) * * @author Mark Wielaard (mark@klomp.org) * @see ClassLoader#definePackage(String, String, String, String, String, *      String, String, URL) * @since 1.2 * @status updated to 1.4 */public class Package{  /** The name of the Package */  private final String name;  /** The name if the implementation */  private final String implTitle;  /** The vendor that wrote this implementation */  private final String implVendor;  /** The version of this implementation */  private final String implVersion;  /** The name of the specification */  private final String specTitle;  /** The name of the specification designer */  private final String specVendor;  /** The version of this specification */  private final String specVersion;  /** If sealed the origin of the package classes, otherwise null */  private final URL sealed;  /**   * A package local constructor for the Package class. All parameters except   * the <code>name</code> of the package may be <code>null</code>.   * There are no public constructors defined for Package; this is a package   * local constructor that is used by java.lang.Classloader.definePackage().   *    * @param name The name of the Package   * @param specTitle The name of the specification   * @param specVendor The name of the specification designer   * @param specVersion The version of this specification   * @param implTitle The name of the implementation   * @param implVendor The vendor that wrote this implementation   * @param implVersion The version of this implementation   * @param sealed If sealed the origin of the package classes   */  Package(String name,	  String specTitle, String specVendor, String specVersion,	  String implTitle, String implVendor, String implVersion, URL sealed)  {    if (name == null)      throw new IllegalArgumentException("null Package name");    this.name = name;    this.implTitle = implTitle;    this.implVendor = implVendor;    this.implVersion = implVersion;    this.specTitle = specTitle;    this.specVendor = specVendor;    this.specVersion = specVersion;    this.sealed = sealed;  }  /**   * Returns the Package name in dot-notation.   *   * @return the non-null package name   */  public String getName()  {    return name;  }  /**   * Returns the name of the specification, or null if unknown.   *   * @return the specification title   */  public String getSpecificationTitle()  {    return specTitle;  }  /**   * Returns the version of the specification, or null if unknown.   *   * @return the specification version   */  public String getSpecificationVersion()  {    return specVersion;  }  /**   * Returns the name of the specification designer, or null if unknown.   *   * @return the specification vendor   */  public String getSpecificationVendor()  {    return specVendor;  }  /**   * Returns the name of the implementation, or null if unknown.   *   * @return the implementation title   */  public String getImplementationTitle()  {    return implTitle;  }  /**   * Returns the version of this implementation, or null if unknown.   *   * @return the implementation version   */  public String getImplementationVersion()  {    return implVersion;  }  /**   * Returns the vendor that wrote this implementation, or null if unknown.   *   * @return the implementation vendor   */  public String getImplementationVendor()  {    return implVendor;  }  /**   * Returns true if this Package is sealed.   *   * @return true if the package is sealed   */  public boolean isSealed()  {    return sealed != null;  }  /**   * Returns true if this Package is sealed and the origin of the classes is   * the given URL.   *   * @param url the URL to test   * @return true if the package is sealed by this URL   * @throws NullPointerException if url is null   */  public boolean isSealed(URL url)  {    return url.equals(sealed);  }  /**   * Checks if the version of the specification is higher or at least as high   * as the desired version. Comparison is done by sequentially comparing   * dotted decimal numbers from the parameter and from   * <code>getSpecificationVersion</code>.   *   * @param version the (minimal) desired version of the specification   *   * @return true if the version is compatible, false otherwise   *   * @Throws NumberFormatException if either version string is invalid   * @throws NullPointerException if either version string is null   */  public boolean isCompatibleWith(String version)  {    StringTokenizer versionTokens = new StringTokenizer(version, ".");    StringTokenizer specTokens = new StringTokenizer(specVersion, ".");    try      {        while (versionTokens.hasMoreElements())          {            int vers = Integer.parseInt(versionTokens.nextToken());            int spec = Integer.parseInt(specTokens.nextToken());            if (spec < vers)              return false;            else if (spec > vers)              return true;            // They must be equal, next Token please!          }      }    catch (NoSuchElementException e)      {        // This must have been thrown by spec.nextToken() so return false.        return false;      }    // They must have been exactly the same version.    // Or the specVersion has more subversions. That is also good.    return true;  }  /**   * Returns the named package if it is known by the callers class loader.   * It may return null if the package is unknown, when there is no   * information on that particular package available or when the callers   * classloader is null.   *   * @param name the name of the desired package   * @return the package by that name in the current ClassLoader   */  public static Package getPackage(String name)  {    // Get the caller's classloader    ClassLoader cl = VMSecurityManager.currentClassLoader(Package.class);    return cl != null ? cl.getPackage(name) : VMClassLoader.getPackage(name);  }  /**   * Returns all the packages that are known to the callers class loader.   * It may return an empty array if the classloader of the caller is null.   *   * @return an array of all known packages   */  public static Package[] getPackages()  {    // Get the caller's classloader    Class c = VMSecurityManager.getClassContext(Package.class)[1];    ClassLoader cl = c.getClassLoader();    return cl != null ? cl.getPackages() : VMClassLoader.getPackages();  }  /**   * Returns the hashCode of the name of this package.   *   * @return the hash code   */  public int hashCode()  {    return name.hashCode();  }  /**   * Returns a string representation of this package. It is specified to   * be <code>"package " + getName() + (getSpecificationTitle() == null   * ? "" : ", " + getSpecificationTitle()) + (getSpecificationVersion()   * == null ? "" : ", version " + getSpecificationVersion())</code>.   *   * @return the string representation of the package   */  public String toString()  {    return ("package " + name + (specTitle == null ? "" : ", " + specTitle)	    + (specVersion == null ? "" : ", version " + specVersion));  }} // class Package

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美亚洲动漫另类| av网站一区二区三区| 欧美高清精品3d| 亚洲超丰满肉感bbw| 欧美人妇做爰xxxⅹ性高电影| 偷偷要91色婷婷| 欧美成va人片在线观看| 激情丁香综合五月| 中文字幕一区二区三区精华液 | 麻豆精品一区二区| 久久你懂得1024| 成人av网站在线观看免费| 樱花影视一区二区| 91精品国产91久久综合桃花| 国产乱子轮精品视频| 亚洲欧美综合在线精品| 欧美精品aⅴ在线视频| 国产精品影视天天线| 亚洲精品免费看| 日韩一区二区在线观看| 成人综合在线观看| 亚洲第一久久影院| 久久综合狠狠综合| 91国产成人在线| 久久精品国产免费| 亚洲欧美日韩国产综合| 亚洲国产激情av| 欧美日韩情趣电影| 国产成人在线电影| 亚洲国产sm捆绑调教视频| 久久久美女艺术照精彩视频福利播放 | 欧美一卡在线观看| av亚洲产国偷v产偷v自拍| 三级久久三级久久久| 日本一区二区动态图| 69久久99精品久久久久婷婷 | 自拍偷在线精品自拍偷无码专区 | 日本一区二区免费在线观看视频 | 欧美日韩综合色| 国产一区二区视频在线播放| 亚洲制服欧美中文字幕中文字幕| 精品蜜桃在线看| 欧美日产国产精品| 99在线精品一区二区三区| 精品无人区卡一卡二卡三乱码免费卡| 亚洲精品国产高清久久伦理二区| 久久一日本道色综合| 欧美亚洲日本国产| 成人黄色在线看| 国产一区二区美女| 麻豆国产欧美一区二区三区| 夜夜嗨av一区二区三区网页| 欧美国产欧美亚州国产日韩mv天天看完整| 777a∨成人精品桃花网| 91黄色免费观看| av一区二区三区在线| 国产一区二区三区免费在线观看 | 91蝌蚪porny| 国产精品乡下勾搭老头1| 日产欧产美韩系列久久99| 亚洲丝袜精品丝袜在线| 国产精品女同一区二区三区| 久久伊99综合婷婷久久伊| 日韩视频一区二区在线观看| 欧美精品一级二级| 欧美日韩不卡一区二区| 日本精品视频一区二区三区| 99久久精品免费看国产| 成人av网在线| 成a人片国产精品| 成人丝袜18视频在线观看| 国产黄人亚洲片| 国产精品99久久久久久似苏梦涵| 麻豆精品一区二区综合av| 免费精品视频在线| 首页国产丝袜综合| 天天亚洲美女在线视频| 污片在线观看一区二区| 男女男精品视频| 美女视频网站久久| 久久成人免费电影| 国产真实乱对白精彩久久| 国产伦精品一区二区三区免费 | 亚洲国产精品精华液ab| 欧美韩国一区二区| 亚洲色欲色欲www| 亚洲自拍另类综合| 日韩有码一区二区三区| 蜜桃视频一区二区| 国产精品538一区二区在线| 国产成人免费高清| 成人av在线影院| 国产精品久久久久久久久免费丝袜 | 久久先锋影音av| 国产调教视频一区| 亚洲欧洲性图库| 亚洲精品成人少妇| 日韩国产欧美视频| 精品一区二区国语对白| 成人综合婷婷国产精品久久蜜臀| 99精品偷自拍| 欧美日韩国产影片| 26uuu精品一区二区 | 亚洲精品va在线观看| 日精品一区二区| 韩国女主播成人在线观看| 成人av电影在线| 欧美日韩国产另类一区| 久久综合视频网| 亚洲免费毛片网站| 久久精品二区亚洲w码| 成人高清视频在线观看| 欧美影片第一页| 久久综合久久99| 亚洲男人天堂av| 久久超级碰视频| 色偷偷久久一区二区三区| 欧美一区二区视频免费观看| 久久精品网站免费观看| 亚洲一区二区三区四区在线免费观看| 91免费版pro下载短视频| 精品奇米国产一区二区三区| 日韩伦理电影网| 韩国欧美国产1区| 91福利国产精品| 久久久久久**毛片大全| 亚洲小说春色综合另类电影| 国产综合久久久久久久久久久久| 日本韩国精品一区二区在线观看| 精品久久久久久亚洲综合网| 亚洲小说欧美激情另类| 高清成人在线观看| 日韩欧美的一区| 亚洲国产精品自拍| 成人国产电影网| 久久影院视频免费| 免费成人在线播放| 欧美影院一区二区| 自拍偷拍欧美精品| 国产电影一区二区三区| 欧美一级二级三级蜜桃| 亚洲人成网站影音先锋播放| 国产精品乡下勾搭老头1| 777午夜精品免费视频| 亚洲国产综合在线| 91麻豆免费视频| 国产精品每日更新| 国产在线一区观看| 欧美一级理论片| 视频一区在线视频| 欧美视频自拍偷拍| 亚洲女爱视频在线| 97久久精品人人做人人爽| 国产区在线观看成人精品 | 欧美亚洲免费在线一区| 亚洲欧洲性图库| 成人av综合在线| 中文在线资源观看网站视频免费不卡 | 色94色欧美sute亚洲线路二| 中文字幕的久久| 国产成人综合亚洲网站| 2017欧美狠狠色| 国产一区二区视频在线| 26uuu色噜噜精品一区二区| 麻豆国产欧美一区二区三区| 日韩欧美精品三级| 久久精品国产亚洲5555| 欧美va天堂va视频va在线| 裸体歌舞表演一区二区| 精品日韩欧美一区二区| 国产综合成人久久大片91| 精品国产露脸精彩对白| 国产呦精品一区二区三区网站| 2021中文字幕一区亚洲| 国产精品自在在线| 中文字幕+乱码+中文字幕一区| 成人精品在线视频观看| 亚洲欧美综合另类在线卡通| 99精品久久只有精品| 亚洲欧美另类久久久精品2019| 色999日韩国产欧美一区二区| 一区二区三区日韩欧美| 欧美日韩国产综合久久| 日韩成人免费看| 精品1区2区在线观看| 成人不卡免费av| 亚洲精品视频自拍| 欧美日韩另类国产亚洲欧美一级| 日韩国产欧美在线播放| 久久久久久久国产精品影院| 国产91精品久久久久久久网曝门| 日韩一区在线免费观看| 欧美色老头old∨ideo| 青青青伊人色综合久久| 国产欧美日韩在线| 在线观看亚洲成人| 蜜桃久久久久久| 中文字幕欧美日韩一区| 欧美视频一区二区三区在线观看| 免费亚洲电影在线|