/[classpath]/classpath/org/omg/CORBA/ULongLongSeqHolder.java
ViewVC logotype

Diff of /classpath/org/omg/CORBA/ULongLongSeqHolder.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by audriusa, Sun Mar 6 09:15:53 2005 UTC revision 1.2 by gnu_andrew, Sun Mar 6 22:37:05 2005 UTC
# Line 38  Line 38 
38    
39  package org.omg.CORBA;  package org.omg.CORBA;
40    
41    import gnu.CORBA.primitiveArrayTypeCode;
42    
43  import org.omg.CORBA.portable.InputStream;  import org.omg.CORBA.portable.InputStream;
44  import org.omg.CORBA.portable.OutputStream;  import org.omg.CORBA.portable.OutputStream;
45  import org.omg.CORBA.portable.Streamable;  import org.omg.CORBA.portable.Streamable;
# Line 81  public final class ULongLongSeqHolder Line 83  public final class ULongLongSeqHolder
83    public ULongLongSeqHolder(long[] initial_value)    public ULongLongSeqHolder(long[] initial_value)
84    {    {
85      value = initial_value;      value = initial_value;
86      typecode.length = value.length;      typecode.setLength(value.length);
87    }    }
88    
89    /**    /**
# Line 96  public final class ULongLongSeqHolder Line 98  public final class ULongLongSeqHolder
98    {    {
99      value = new long[ input.read_long() ];      value = new long[ input.read_long() ];
100      input.read_ulonglong_array(value, 0, value.length);      input.read_ulonglong_array(value, 0, value.length);
101      typecode.length = value.length;      typecode.setLength(value.length);
102    }    }
103    
104    /**    /**

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26