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

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

?? activationgroupdesc.java

?? JAVA基本類源代碼,大家可以學習學習!
?? JAVA
字號:
/* * @(#)ActivationGroupDesc.java	1.26 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.rmi.activation;import java.io.IOException;import java.rmi.MarshalledObject;import java.util.Arrays;import java.util.ArrayList;import java.util.Collection;import java.util.Collections;import java.util.Iterator;import java.util.List;import java.util.Properties;/** * An activation group descriptor contains the information necessary to * create/recreate an activation group in which to activate objects. * Such a descriptor contains: <ul> * <li> the group's class name, * <li> the group's code location (the location of the group's class), and * <li> a "marshalled" object that can contain group specific * initialization data. </ul> <p> * * The group's class must be a concrete subclass of * <code>ActivationGroup</code>. A subclass of * <code>ActivationGroup</code> is created/recreated via the * <code>ActivationGroup.createGroup</code> static method that invokes * a special constructor that takes two arguments: <ul> * * <li> the group's <code>ActivationGroupID</code>, and * <li> the group's initialization data (in a * <code>java.rmi.MarshalledObject</code>)</ul><p> * * @version	1.26, 01/23/03 * @author	Ann Wollrath * @since	1.2 * @see		ActivationGroup * @see		ActivationGroupID */public final class ActivationGroupDesc implements java.io.Serializable {    /**     * @serial The group's fully package qualified class name.     */    private String className;    /**     * @serial The location from where to load the group's class.     */    private String location;    /**     * @serial The group's initialization data.     */    private MarshalledObject data;    /**     * @serial The controlling options for executing the VM in     * another process.     */    private CommandEnvironment env;        /**     * @serial A properties map which will override those set     * by default in the subprocess environment.     */    private Properties props;        /** indicate compatibility with the Java 2 SDK v1.2 version of class */    private static final long serialVersionUID = -4936225423168276595L;    /**     * Constructs a group descriptor that uses the system defaults for group     * implementation and code location.  Properties specify Java     * environment overrides (which will override system properties in     * the group implementation's VM).  The command     * environment can control the exact command/options used in     * starting the child VM, or can be <code>null</code> to accept     * rmid's default.     *     * <p>This constructor will create an <code>ActivationGroupDesc</code>     * with a <code>null</code> group class name, which indicates the system's     * default <code>ActivationGroup</code> implementation.     *     * @param overrides the set of properties to set when the group is     * recreated.     * @param cmd the controlling options for executing the VM in     * another process (or <code>null</code>).     * @since 1.2     */    public ActivationGroupDesc(Properties overrides,                               CommandEnvironment cmd)    {	this(null, null, null, overrides, cmd);    }    /**     * Specifies an alternate group implementation and execution     * environment to be used for the group.     *      * @param className the group's package qualified class name or     * <code>null</code>. A <code>null</code> group class name indicates     * the system's default <code>ActivationGroup</code> implementation.     * @param location the location from where to load the group's     * class     * @param data the group's initialization data contained in     * marshalled form (could contain properties, for example)     * @param overrides a properties map which will override those set     * by default in the subprocess environment (will be translated     * into <code>-D</code> options), or <code>null</code>.     * @param cmd the controlling options for executing the VM in     * another process (or <code>null</code>).     * @since 1.2     */    public ActivationGroupDesc(String className,			       String location,			       MarshalledObject data,			       Properties overrides,                               CommandEnvironment cmd)    {	this.props = overrides;	this.env = cmd;	this.data = data;	this.location = location;	this.className = className;    }    /**     * Returns the group's class name (possibly <code>null</code>).  A     * <code>null</code> group class name indicates the system's default     * <code>ActivationGroup</code> implementation.     * @return the group's class name     * @since 1.2     */    public String getClassName() {	return className;    }    /**     * Returns the group's code location.     * @return the group's code location     * @since 1.2     */    public String getLocation() {	return location;    }    /**     * Returns the group's initialization data.     * @return the group's initialization data     * @since 1.2     */    public MarshalledObject getData() {	return data;    }    /**     * Returns the group's property-override list.     * @return the property-override list, or <code>null</code>     * @since 1.2     */    public Properties getPropertyOverrides() {	return (props != null) ? (Properties) props.clone() : null;    }    /**     * Returns the group's command-environment control object.     * @return the command-environment object, or <code>null</code>     * @since 1.2     */    public CommandEnvironment getCommandEnvironment() {	return this.env;    }    /**     * Startup options for ActivationGroup implementations.     *     * This class allows overriding default system properties and     * specifying implementation-defined options for ActivationGroups.     * @since 1.2     */    public static class CommandEnvironment	implements java.io.Serializable    {	/**	 * @serial	 */	private String command;	/**	 * @serial	 */	private String[] options;	/**	 * Create a CommandEnvironment with all the necessary	 * information.	 * 	 * @param cmdpath the name of the java executable, including	 * the full path, or <code>null</code>, meaning "use rmid's default".	 * The named program <em>must</em> be able to accept multiple	 * <code>-Dpropname=value</code> options (as documented for the	 * "java" tool)	 * 	 * @param argv extra options which will be used in creating the	 * ActivationGroup.  Null has the same effect as an empty	 * list.	 * @since 1.2	 */	public CommandEnvironment(String cmdpath,				  String[] argv)	{	    this.command = cmdpath;	// might be null	    // Hold a safe copy of argv in this.options	    if (argv == null) {		this.options = null;	    } else {		this.options = new String[argv.length];		System.arraycopy(argv, 0, this.options, 0, argv.length);	    }	}	/**	 * Fetch the configured path-qualified java command name.	 *	 * @return the configured name, or <code>null</code> if configured to	 * accept the default	 * @since 1.2	 */	public String getCommandPath() {	    return (this.command);	}	/**	 * Fetch the configured java command options.	 *	 * @return An array of the command options which will be passed	 * to the new child command by rmid.	 * Note that rmid may add other options before or after these	 * options, or both.	 * Never returns <code>null</code>.	 * @since 1.2	 */	public String[] getCommandOptions() {	    return (this.options != null		    ? (String[]) this.options.clone()		    : new String[0]);	}		/**	 * Compares two command environments for content equality.	 *	 * @param	obj	the Object to compare with	 * @return	true if these Objects are equal; false otherwise.	 * @see		java.util.Hashtable	 * @since 1.2	 */	public boolean equals(Object obj) {		    if (obj instanceof CommandEnvironment) {		CommandEnvironment env = (CommandEnvironment) obj;		return		    ((command == null ? env.command == null :		      command.equals(env.command)) &&		     Arrays.equals(options, env.options));	    } else {		return false;	    }	}	/**	 * Return identical values for similar	 * <code>CommandEnvironment</code>s.	 * @return an integer	 * @see java.util.Hashtable	 */	public int hashCode()	{	    // hash command and ignore possibly expensive options	    return (command == null ? 0 : command.hashCode());	}    }    /**     * Compares two activation group descriptors for content equality.     *     * @param	obj	the Object to compare with     * @return	true if these Objects are equal; false otherwise.     * @see		java.util.Hashtable     * @since 1.2     */    public boolean equals(Object obj) {		if (obj instanceof ActivationGroupDesc) {	    ActivationGroupDesc desc = (ActivationGroupDesc) obj;	    return		((className == null ? desc.className == null :		  className.equals(desc.className)) &&		 (location == null ? desc.location == null :		  location.equals(desc.location)) &&		 (data == null ? desc.data == null : data.equals(desc.data)) &&		 (env == null ? desc.env == null : env.equals(desc.env)) &&		 (props == null ? desc.props == null :		  props.equals(desc.props)));	} else {	    return false;	}    }    /**     * Produce identical numbers for similar <code>ActivationGroupDesc</code>s.     * @return an integer     * @see java.util.Hashtable     */    public int hashCode()    {	// hash location, className, data, and env	// but omit props (may be expensive)	return ((location == null		    ? 0		    : location.hashCode() << 24) ^		(env == null		    ? 0		    : env.hashCode() << 16) ^		(className == null		    ? 0		    : className.hashCode() << 8) ^		(data == null		    ? 0		    : data.hashCode()));    }    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品成a人| 国产91富婆露脸刺激对白| 国产精品99久| 欧美日韩电影一区| 中文天堂在线一区| 捆绑紧缚一区二区三区视频| 波多野结衣一区二区三区| 欧美成人伊人久久综合网| 亚洲国产成人tv| 99精品欧美一区二区三区综合在线| 欧美成人一区二区三区片免费 | 精品噜噜噜噜久久久久久久久试看| 综合在线观看色| 国产91精品免费| 久久综合色婷婷| 美洲天堂一区二卡三卡四卡视频| av亚洲精华国产精华精| 国产三级一区二区| 久久99久久99小草精品免视看| 欧美乱熟臀69xxxxxx| 亚洲欧美日韩久久| k8久久久一区二区三区| 欧美激情一区二区| 国产美女一区二区| 久久久一区二区三区捆绑**| 精品制服美女久久| 日韩免费性生活视频播放| 日本免费在线视频不卡一不卡二| 欧美日韩午夜在线| 亚洲成人久久影院| 欧美男生操女生| 天天综合色天天综合| 欧美天堂一区二区三区| 亚洲第一精品在线| 欧美精品国产精品| 天堂久久一区二区三区| 91精品国产色综合久久不卡电影| 天天影视色香欲综合网老头| 在线不卡的av| 免费成人小视频| 久久蜜桃av一区二区天堂 | 国产欧美1区2区3区| 国产一区二区视频在线播放| 久久毛片高清国产| 成人福利视频在线看| 亚洲精品第1页| 欧美一卡二卡三卡| 精品亚洲porn| 中文字幕制服丝袜一区二区三区 | 欧美性做爰猛烈叫床潮| 亚洲成年人影院| 精品成人私密视频| 成人综合激情网| 亚洲精品视频在线观看网站| 欧美日韩久久久久久| 毛片基地黄久久久久久天堂| 久久精品视频一区二区| 99久久国产免费看| 婷婷国产在线综合| 欧美激情中文字幕一区二区| 色婷婷综合中文久久一本| 日韩在线一二三区| 日本一区二区三区视频视频| 在线观看视频一区二区| 久色婷婷小香蕉久久| 中文字幕不卡的av| 欧美日韩1区2区| 丁香五精品蜜臀久久久久99网站| 亚洲精品高清在线| 精品久久久久久久一区二区蜜臀| heyzo一本久久综合| 日日摸夜夜添夜夜添国产精品| 国产欧美一区二区三区在线老狼| 91精品福利在线| 国产在线精品一区二区夜色| 一区二区三区**美女毛片| 日韩一区二区三区av| 91在线播放网址| 国产在线视频不卡二| 一区二区三区在线视频观看58| 欧美精品一区视频| 91福利精品第一导航| 国产精品69久久久久水密桃| 午夜国产精品一区| 亚洲日本一区二区| 久久久国产午夜精品| 欧美乱妇23p| 在线免费观看视频一区| 成人午夜精品在线| 国产一区二区三区四区在线观看| 亚洲成人三级小说| 亚洲日本在线a| 中文字幕国产精品一区二区| 欧美α欧美αv大片| 欧美妇女性影城| 欧美性极品少妇| 91免费版在线| 成人黄色电影在线 | 三级在线观看一区二区 | 轻轻草成人在线| 亚洲午夜视频在线| 亚洲色图制服丝袜| 欧美国产激情一区二区三区蜜月| 日韩欧美成人一区| 日韩一区二区三区观看| 欧美日韩国产高清一区二区三区| 色综合天天做天天爱| 成人不卡免费av| 99国产精品久久久久久久久久久| 国产91在线观看| 国产精品99久| 大桥未久av一区二区三区中文| 国模娜娜一区二区三区| 紧缚捆绑精品一区二区| 精品一区二区免费视频| 精品一区二区久久| 国产精品中文字幕一区二区三区| 六月丁香综合在线视频| 老司机免费视频一区二区三区| 麻豆精品国产91久久久久久| 奇米888四色在线精品| 麻豆久久一区二区| 国产精品一线二线三线| 成人自拍视频在线| 91在线视频观看| 91久久精品国产91性色tv| 欧美天堂一区二区三区| 91精品国产色综合久久不卡电影 | 国产在线国偷精品产拍免费yy | 国产日韩亚洲欧美综合| 国产亚洲欧美日韩俺去了| 国产欧美日韩久久| 自拍偷拍国产精品| 亚洲第一福利一区| 麻豆成人综合网| 高清在线成人网| 91久久奴性调教| 日韩视频在线一区二区| 日本一区二区在线不卡| 亚洲激情在线激情| 美女一区二区久久| av在线一区二区三区| 精品视频在线免费| 国产视频视频一区| 一区二区三区在线视频观看| 日本aⅴ精品一区二区三区 | 欧美日韩亚洲另类| 精品国产凹凸成av人网站| 中文字幕亚洲成人| 午夜激情综合网| 国产成人免费视频一区| 在线亚洲高清视频| 久久久不卡影院| 亚洲在线观看免费| 国产成人综合在线| 欧美日韩一区二区在线观看视频| 久久中文字幕电影| 亚洲444eee在线观看| 国产精品白丝jk白祙喷水网站| 91国在线观看| 精品国产sm最大网站| 亚洲乱码国产乱码精品精可以看| 蜜臀av性久久久久蜜臀aⅴ| 97精品久久久午夜一区二区三区| 日韩无一区二区| 亚洲精品va在线观看| 国产在线视频精品一区| 久久久av毛片精品| 亚洲精品五月天| 国产成人啪免费观看软件| 欧美日韩精品系列| 国产精品久久久久三级| 蜜臀久久久99精品久久久久久| 色视频成人在线观看免| 国产亚洲一本大道中文在线| 日本在线观看不卡视频| 色先锋久久av资源部| 国产丝袜欧美中文另类| 蜜臀久久99精品久久久久宅男| 日本高清免费不卡视频| 国产精品看片你懂得| 激情文学综合网| 日韩亚洲电影在线| 五月综合激情日本mⅴ| 一本在线高清不卡dvd| 中文在线资源观看网站视频免费不卡| 蜜桃久久av一区| 91麻豆精品国产自产在线观看一区| 亚洲欧美日韩综合aⅴ视频| 成人激情图片网| 国产精品美女久久久久久久| 国产福利精品导航| 久久婷婷久久一区二区三区| 久久精品99国产精品日本| 欧美日韩国产综合一区二区| 亚洲成人免费视频| 欧美日韩精品欧美日韩精品一| 亚洲国产aⅴ成人精品无吗| 在线观看网站黄不卡| 亚洲午夜三级在线|