AttributeDescription.java revision 608:7e06bf1dcb09
1196550Sdelphij/*
2196550Sdelphij * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
3196550Sdelphij * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4196550Sdelphij *
5196550Sdelphij * This code is free software; you can redistribute it and/or modify it
6196550Sdelphij * under the terms of the GNU General Public License version 2 only, as
7196550Sdelphij * published by the Free Software Foundation.  Oracle designates this
8196550Sdelphij * particular file as subject to the "Classpath" exception as provided
9196550Sdelphij * by Oracle in the LICENSE file that accompanied this code.
10196550Sdelphij *
11196550Sdelphij * This code is distributed in the hope that it will be useful, but WITHOUT
12196550Sdelphij * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13196550Sdelphij * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14196550Sdelphij * version 2 for more details (a copy is included in the LICENSE file that
15196550Sdelphij * accompanied this code).
16196550Sdelphij *
17196550Sdelphij * You should have received a copy of the GNU General Public License version
18196550Sdelphij * 2 along with this work; if not, write to the Free Software Foundation,
19196550Sdelphij * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20196550Sdelphij *
21196550Sdelphij * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22196550Sdelphij * or visit www.oracle.com if you need additional information or have any
23196550Sdelphij * questions.
24196550Sdelphij */
25196550Sdelphijpackage com.sun.org.omg.CORBA;
26196550Sdelphij
27196550Sdelphij
28196550Sdelphij/**
29196550Sdelphij* com/sun/org/omg/CORBA/AttributeDescription.java
30196550Sdelphij* Generated by the IDL-to-Java compiler (portable), version "3.0"
31196550Sdelphij* from ir.idl
32196550Sdelphij* Thursday, May 6, 1999 1:51:50 AM PDT
33196550Sdelphij*/
34196550Sdelphij
35196550Sdelphijpublic final class AttributeDescription implements org.omg.CORBA.portable.IDLEntity
36196550Sdelphij{
37197697Shrs    public String name = null;
38196550Sdelphij    public String id = null;
39196550Sdelphij    public String defined_in = null;
40196550Sdelphij    public String version = null;
41196550Sdelphij    public org.omg.CORBA.TypeCode type = null;
42196550Sdelphij    public com.sun.org.omg.CORBA.AttributeMode mode = null;
43196550Sdelphij
44196550Sdelphij    public AttributeDescription ()
45196552Sdelphij    {
46196552Sdelphij    } // ctor
47196550Sdelphij
48196550Sdelphij    public AttributeDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.AttributeMode _mode)
49196550Sdelphij    {
50196550Sdelphij        name = _name;
51196550Sdelphij        id = _id;
52196550Sdelphij        defined_in = _defined_in;
53196550Sdelphij        version = _version;
54196550Sdelphij        type = _type;
55196550Sdelphij        mode = _mode;
56196550Sdelphij    } // ctor
57196550Sdelphij
58196550Sdelphij} // class AttributeDescription
59196550Sdelphij