uuidholder.java

来自「guid 生成工具类,java 实现版本」· Java 代码 · 共 43 行

JAVA
43
字号
package com.eaio.uuid;

/**
* com/eaio/uuid/UUIDHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from uuid.idl
* Sonntag, 7. M鋜z 2004 21.35 Uhr CET
*/


/**
 * The UUID struct.
 */
public final class UUIDHolder implements org.omg.CORBA.portable.Streamable
{
  public com.eaio.uuid.UUID value = null;

  public UUIDHolder ()
  {
  }

  public UUIDHolder (com.eaio.uuid.UUID initialValue)
  {
    value = initialValue;
  }

  public void _read (org.omg.CORBA.portable.InputStream i)
  {
    value = com.eaio.uuid.UUIDHelper.read (i);
  }

  public void _write (org.omg.CORBA.portable.OutputStream o)
  {
    com.eaio.uuid.UUIDHelper.write (o, value);
  }

  public org.omg.CORBA.TypeCode _type ()
  {
    return com.eaio.uuid.UUIDHelper.type ();
  }

}

⌨️ 快捷键说明

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