1 package org.omg.CORBA; 2 3 9 10 11 15 public final class PolicyErrorHolder implements org.omg.CORBA.portable.Streamable 16 { 17 public org.omg.CORBA.PolicyError value = null; 18 19 public PolicyErrorHolder () 20 { 21 } 22 23 public PolicyErrorHolder (org.omg.CORBA.PolicyError initialValue) 24 { 25 value = initialValue; 26 } 27 28 public void _read (org.omg.CORBA.portable.InputStream i) 29 { 30 value = org.omg.CORBA.PolicyErrorHelper.read (i); 31 } 32 33 public void _write (org.omg.CORBA.portable.OutputStream o) 34 { 35 org.omg.CORBA.PolicyErrorHelper.write (o, value); 36 } 37 38 public org.omg.CORBA.TypeCode _type () 39 { 40 return org.omg.CORBA.PolicyErrorHelper.type (); 41 } 42 43 } 44 | Popular Tags |