UnknownUserExceptionHolder.java revision 608:7e06bf1dcb09
1254721Semaste/*
2254721Semaste * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved.
3254721Semaste * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4254721Semaste *
5254721Semaste * This code is free software; you can redistribute it and/or modify it
6254721Semaste * under the terms of the GNU General Public License version 2 only, as
7254721Semaste * published by the Free Software Foundation.  Oracle designates this
8254721Semaste * particular file as subject to the "Classpath" exception as provided
9254721Semaste * by Oracle in the LICENSE file that accompanied this code.
10254721Semaste *
11254721Semaste * This code is distributed in the hope that it will be useful, but WITHOUT
12254721Semaste * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13254721Semaste * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14254721Semaste * version 2 for more details (a copy is included in the LICENSE file that
15254721Semaste * accompanied this code).
16254721Semaste *
17254721Semaste * You should have received a copy of the GNU General Public License version
18254721Semaste * 2 along with this work; if not, write to the Free Software Foundation,
19254721Semaste * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20254721Semaste *
21254721Semaste * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22254721Semaste * or visit www.oracle.com if you need additional information or have any
23254721Semaste * questions.
24254721Semaste */
25254721Semastepackage org.omg.CORBA;
26254721Semaste
27254721Semaste/**
28254721Semaste* The Holder for <tt>UnknownUserException</tt>.  For more information on
29254721Semaste* Holder files, see <a href="doc-files/generatedfiles.html#holder">
30254721Semaste* "Generated Files: Holder Files"</a>.<P>
31254721Semaste* org/omg/CORBA/UnknownUserExceptionHolder.java
32254721Semaste* Generated by the IDL-to-Java compiler (portable), version "3.0"
33254721Semaste* from CORBA.idl
34254721Semaste* Thursday, August 24, 2000 5:52:22 PM PDT
35254721Semaste*/
36254721Semaste
37254721Semastepublic final class UnknownUserExceptionHolder implements org.omg.CORBA.portable.Streamable
38254721Semaste{
39254721Semaste  public org.omg.CORBA.UnknownUserException value = null;
40254721Semaste
41254721Semaste  public UnknownUserExceptionHolder ()
42254721Semaste  {
43254721Semaste  }
44254721Semaste
45254721Semaste  public UnknownUserExceptionHolder (org.omg.CORBA.UnknownUserException initialValue)
46254721Semaste  {
47254721Semaste    value = initialValue;
48254721Semaste  }
49254721Semaste
50254721Semaste  public void _read (org.omg.CORBA.portable.InputStream i)
51254721Semaste  {
52254721Semaste    value = org.omg.CORBA.UnknownUserExceptionHelper.read (i);
53254721Semaste  }
54254721Semaste
55254721Semaste  public void _write (org.omg.CORBA.portable.OutputStream o)
56254721Semaste  {
57254721Semaste    org.omg.CORBA.UnknownUserExceptionHelper.write (o, value);
58254721Semaste  }
59254721Semaste
60254721Semaste  public org.omg.CORBA.TypeCode _type ()
61254721Semaste  {
62254721Semaste    return org.omg.CORBA.UnknownUserExceptionHelper.type ();
63254721Semaste  }
64254721Semaste
65254721Semaste}
66254721Semaste