001 package org.omg.CORBA.InterfaceDefPackage;
002
003 /**
004 * Generated from IDL struct "FullInterfaceDescription".
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 FullInterfaceDescription
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public FullInterfaceDescription(){}
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.OperationDescription[] operations;
019 public org.omg.CORBA.AttributeDescription[] attributes;
020 public java.lang.String[] base_interfaces;
021 public org.omg.CORBA.TypeCode type;
022 public boolean is_abstract;
023 public FullInterfaceDescription(java.lang.String name, java.lang.String id, java.lang.String defined_in, java.lang.String version, org.omg.CORBA.OperationDescription[] operations, org.omg.CORBA.AttributeDescription[] attributes, java.lang.String[] base_interfaces, org.omg.CORBA.TypeCode type, boolean is_abstract)
024 {
025 this.name = name;
026 this.id = id;
027 this.defined_in = defined_in;
028 this.version = version;
029 this.operations = operations;
030 this.attributes = attributes;
031 this.base_interfaces = base_interfaces;
032 this.type = type;
033 this.is_abstract = is_abstract;
034 }
035 }