summaryrefslogtreecommitdiff
path: root/test/disabled/presentation/akka/src/com/eaio/uuid/UUIDHolder.java
blob: d5531f5e00af775739a55300614034ab4eeeb306 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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ärz 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 ();
  }

}