ULongLongSeqHolder.java revision 704:3ef63dbde965
155825Speter/*
2218822Sdim * Copyright (c) 1999, 2001, Oracle and/or its affiliates. All rights reserved.
3114370Speter * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
439818Speter *
5114370Speter * This code is free software; you can redistribute it and/or modify it
639818Speter * under the terms of the GNU General Public License version 2 only, as
739818Speter * published by the Free Software Foundation.  Oracle designates this
839818Speter * particular file as subject to the "Classpath" exception as provided
9220090Salc * by Oracle in the LICENSE file that accompanied this code.
10220090Salc *
11284870Sroyger * This code is distributed in the hope that it will be useful, but WITHOUT
12284870Sroyger * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13284870Sroyger * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14284870Sroyger * version 2 for more details (a copy is included in the LICENSE file that
15284870Sroyger * accompanied this code).
16284870Sroyger *
17114370Speter * You should have received a copy of the GNU General Public License version
18218822Sdim * 2 along with this work; if not, write to the Free Software Foundation,
19114370Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20114370Speter *
21114370Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22114370Speter * or visit www.oracle.com if you need additional information or have any
23114370Speter * questions.
24114370Speter */
25114370Speterpackage org.omg.CORBA;
26114370Speter
27114370Speter
28114370Speter/**
29114370Speter* The Holder for {@code ULongLongSeq}. For more information on
30114370Speter* Holder files, see <a href="doc-files/generatedfiles.html#holder">
31114370Speter* "Generated Files: Holder Files"</a>.<P>
32218822Sdim* org/omg/CORBA/ULongLongSeqHolder.java
33218822Sdim* Generated by the IDL-to-Java compiler (portable), version "3.0"
34114370Speter* from streams.idl
35114370Speter* 13 May 1999 22:41:37 o'clock GMT+00:00
36114370Speter*/
37114370Speter
38114370Speterpublic final class ULongLongSeqHolder implements org.omg.CORBA.portable.Streamable
39114370Speter{
40114370Speter    public long value[] = null;
41114370Speter
42114370Speter    public ULongLongSeqHolder ()
43114370Speter    {
44114370Speter    }
45114370Speter
46114370Speter    public ULongLongSeqHolder (long[] initialValue)
47114370Speter    {
48218822Sdim        value = initialValue;
49218822Sdim    }
50218822Sdim
51218822Sdim    public void _read (org.omg.CORBA.portable.InputStream i)
52218822Sdim    {
53218822Sdim        value = org.omg.CORBA.ULongLongSeqHelper.read (i);
54114370Speter    }
55114370Speter
56114370Speter    public void _write (org.omg.CORBA.portable.OutputStream o)
5739818Speter    {
58114370Speter        org.omg.CORBA.ULongLongSeqHelper.write (o, value);
59114370Speter    }
60114370Speter
61114370Speter    public org.omg.CORBA.TypeCode _type ()
62114370Speter    {
63114370Speter        return org.omg.CORBA.ULongLongSeqHelper.type ();
64218822Sdim    }
6539818Speter
6639818Speter}
67114370Speter