1 23 24 28 package com.sun.jts.otsidl; 29 30 31 37 38 public final class TransAncestryHolder implements org.omg.CORBA.portable.Streamable 39 { 40 public org.omg.CosTransactions.TransIdentity value[] = null; 41 42 public TransAncestryHolder () 43 { 44 } 45 46 public TransAncestryHolder (org.omg.CosTransactions.TransIdentity[] initialValue) 47 { 48 value = initialValue; 49 } 50 51 public void _read (org.omg.CORBA.portable.InputStream i) 52 { 53 value = com.sun.jts.otsidl.TransAncestryHelper.read (i); 54 } 55 56 public void _write (org.omg.CORBA.portable.OutputStream o) 57 { 58 com.sun.jts.otsidl.TransAncestryHelper.write (o, value); 59 } 60 61 public org.omg.CORBA.TypeCode _type () 62 { 63 return com.sun.jts.otsidl.TransAncestryHelper.type (); 64 } 65 66 } 67 | Popular Tags |