1 package mark; 2 3 4 10 11 public abstract class AddData implements org.omg.CORBA.portable.StreamableValue 12 { 13 protected int J_a = (int)0; 14 15 private static String[] _truncatable_ids = { 16 mark.AddDataHelper.id () 17 }; 18 19 public String[] _truncatable_ids() { 20 return _truncatable_ids; 21 } 22 23 public abstract int J_a (); 24 25 public abstract void J_a (int newJ_a); 26 27 public void _read (org.omg.CORBA.portable.InputStream istream) 28 { 29 this.J_a = istream.read_long (); 30 } 31 32 public void _write (org.omg.CORBA.portable.OutputStream ostream) 33 { 34 ostream.write_long (this.J_a); 35 } 36 37 public org.omg.CORBA.TypeCode _type () 38 { 39 return mark.AddDataHelper.type (); 40 } 41 } | Popular Tags |