maxstreamformatversioncomponentimpl.java

来自「JAVA 所有包」· Java 代码 · 共 82 行

JAVA
82
字号
/* * @(#)MaxStreamFormatVersionComponentImpl.java	1.11 05/11/17 *  * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *//** * @(#)MaxStreamFormatVersionComponentImpl.java	1.11 05/11/17 */package com.sun.corba.se.impl.ior.iiop;import org.omg.IOP.TAG_RMI_CUSTOM_MAX_STREAM_FORMAT;import org.omg.CORBA_2_3.portable.OutputStream;import javax.rmi.CORBA.Util;import javax.rmi.CORBA.ValueHandler;import javax.rmi.CORBA.ValueHandlerMultiFormat;import com.sun.corba.se.impl.orbutil.ORBUtility;import com.sun.corba.se.spi.ior.TaggedComponentBase;import com.sun.corba.se.spi.ior.iiop.MaxStreamFormatVersionComponent;// Java to IDL ptc 02-01-12 1.4.11// TAG_RMI_CUSTOM_MAX_STREAM_FORMATpublic class MaxStreamFormatVersionComponentImpl extends TaggedComponentBase     implements MaxStreamFormatVersionComponent{    private byte version;    public static final MaxStreamFormatVersionComponentImpl singleton        = new MaxStreamFormatVersionComponentImpl();    public boolean equals(Object obj)    {	if (!(obj instanceof MaxStreamFormatVersionComponentImpl))	    return false ;	MaxStreamFormatVersionComponentImpl other = 	    (MaxStreamFormatVersionComponentImpl)obj ;	return version == other.version ;    }    public int hashCode()    {	return version ;    }    public String toString()    {	return "MaxStreamFormatVersionComponentImpl[version=" + version + "]" ;    }    public MaxStreamFormatVersionComponentImpl()    {        version = ORBUtility.getMaxStreamFormatVersion();    }    public MaxStreamFormatVersionComponentImpl(byte streamFormatVersion) {        version = streamFormatVersion;    }    public byte getMaxStreamFormatVersion()    {	return version;    }    public void writeContents(OutputStream os)     {        os.write_octet(version);    }        public int getId()     {	return TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?