001 package org.omg.CORBA;
002
003 /**
004 * Generated from IDL struct "AttributeDescription".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Nov 6, 2011 12:20:22 AM
008 */
009
010 public final class AttributeDescription
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public AttributeDescription(){}
014 public java.lang.String name;
015 public java.lang.String id;
016 public java.lang.String defined_in;
017 public java.lang.String version;
018 public org.omg.CORBA.TypeCode type;
019 public org.omg.CORBA.AttributeMode mode;
020 public AttributeDescription(java.lang.String name, java.lang.String id, java.lang.String defined_in, java.lang.String version, org.omg.CORBA.TypeCode type, org.omg.CORBA.AttributeMode mode)
021 {
022 this.name = name;
023 this.id = id;
024 this.defined_in = defined_in;
025 this.version = version;
026 this.type = type;
027 this.mode = mode;
028 }
029 }