home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / JBuilder8.iso / Solaris / resource / jre / man / sman1 / idlj.1 < prev    next >
Encoding:
Text File  |  2002-09-06  |  25.1 KB  |  254 lines

  1. <!DOCTYPE REFENTRY PUBLIC "-//Sun Microsystems//DTD DocBook V3.0-Based SolBook Subset V2.0//EN" [
  2. <!--ArborText, Inc., 1988-1999, v.4002-->
  3. <!ENTITY % javaents SYSTEM "javaman.ent">
  4. %javaents;
  5. ]>
  6. <?Pub UDT _bookmark _target>
  7. <refentry id="idlj-1">
  8. <!--@(#)idlj.1 1.1 01/03/14 SMI;-->
  9. <refmeta><refentrytitle>idlj</refentrytitle><manvolnum>1</manvolnum>
  10. <refmiscinfo class="date">23 Apr 2001</refmiscinfo>
  11. <refmiscinfo class="sectdesc">&man1;</refmiscinfo>
  12. <refmiscinfo class="software">&java-release;</refmiscinfo>
  13. <refmiscinfo class="arch">generic</refmiscinfo>
  14. <refmiscinfo class="copyright"> Copyright 2001 Sun Microsystems, Inc. All rights reserved.  Copyright 2001 Sun Microsystems, Inc. Tous droits réservés.  </refmiscinfo>
  15. </refmeta>
  16. <refnamediv><indexterm><primary sortas="idlj">idlj — IDL-to-Java compiler</primary></indexterm><indexterm><primary sortas="IDL-to-Java compiler">IDL-to-Java compiler — idlj</primary></indexterm><refname>idlj</refname><refpurpose>IDL-to-Java compiler</refpurpose></refnamediv>
  17. <refsynopsisdiv><title>&synp-tt;</title>
  18. <cmdsynopsis><command>idlj</command><arg choice="opt"> <replaceable>options</replaceable></arg><arg choice="plain"> <replaceable>idl-file</replaceable></arg>
  19. </cmdsynopsis></refsynopsisdiv>
  20. <refsect1><title>&desc-tt;</title>
  21. <para>The IDL-to-Java Compiler generates the Java bindings for a given <acronym>IDL</acronym> file. For binding details, see the <citetitle>OMG IDL to Java Language Mapping Specification</citetitle>. Some previous releases of the IDL-to-Java compiler were named <literal>idltojava</literal>.</para>
  22. <para>In the synopsis, <replaceable>idl-file</replaceable> is the name of a file containing Interface Definition Language (<acronym>IDL</acronym>) definitions. The <replaceable>options</replaceable> may appear in any order, but must precede the <replaceable>idl-file</replaceable>.</para>
  23. <refsect2><title>Emitting Client and Server Bindings</title>
  24. <para>To generate Java bindings for an <acronym>IDL</acronym> file named <literal>My.idl</literal>:<informalexample><screen>   example% <userinput>idlj My.idl</userinput></screen>
  25. </informalexample></para>
  26. <para>This generates the client-side bindings and is equivalent to:<informalexample><screen>   example% <userinput>idlj -fclient My.idl</userinput></screen>
  27. </informalexample></para>
  28. <para>The client-side bindings do not include the server-side skeleton. If you want to generate the server-side bindings for the interfaces:<informalexample><screen>   example% <userinput>idlj -fserver My.idl</userinput></screen>
  29. </informalexample></para>
  30. <para>Server-side bindings include the client-side bindings plus the skeleton, all of which are <acronym>POA</acronym> (that is, Inheritance Model) classes. If you want to generate both client and server-side bindings, use one of the following (equivalent)     commands:<informalexample><screen>   example% <userinput>idlj -fclient -fserver My.idl</userinput>
  31.    example% <userinput>idlj -fall My.idl</userinput></screen>
  32. </informalexample></para>
  33. <para>There are two possible server-side models: the Inheritance Model and the Tie Model.</para>
  34. <para><emphasis>Inheritance Model</emphasis></para>
  35. <para>A new feature in 1.4: The default server-side model is the <literal>Portable Servant Inheritance Model</literal>. Given an interface <literal>My</literal> defined in <literal>My.idl</literal>, the file <literal>MyPOA.java</literal> is generated. You must provide the implementation for <literal>My</literal> and it must inherit from <literal>MyPOA</literal>.</para>
  36. <para><literal>MyPOA.java</literal> is a stream-based skeleton that extends <literal>org.omg.PortableServer.Servant</literal> and implements the <literal>InvokeHandler</literal> interface and the operations interface associated with the <acronym>IDL</acronym> interface that the skeleton implements.</para>
  37. <para>The <literal>PortableServer</literal> module for the Portable Object Adapter (<acronym>POA</acronym>) defines the native <literal>Servant</literal> type. In the Java programming language, the <literal>Servant</literal> type is mapped to the Java <literal>org.omg.PortableServer.Servant</literal> class. It serves as the base class for all <acronym>POA</acronym> servant implementations and provides
  38. a number of methods that may be invoked by the application programmer, as well as methods which are invoked by the <acronym>POA</acronym> itself and may be overridden by the user to control aspects of servant behavior.</para>
  39. <para>Another option for the Inheritance Model is to use the <option>oldImplBase</option> flag in order to generate server-side bindings that are compatible with older version of the Java programming language (prior to J2SE 1.4). To generate server-side bindings that are backwards compatible:<informalexample><screen>   example% <userinput>idlj -fclient -fserver -oldImplBase My.idl</userinput>
  40.    example% <userinput>idlj -fall -oldImplBase My.idl</userinput></screen>
  41. </informalexample></para>
  42. <para>Given an interface <literal>My</literal> defined in <literal>My.idl</literal>, the file <literal>_MyImplBase.java</literal> is generated. You must provide the implementation for <literal>My</literal> and it must inherit from <literal>_MyImplBase</literal>.</para>
  43. <para><emphasis>Tie Model</emphasis></para>
  44. <para>The other server-side model is called the Tie Model. This is a delegation model. Because it is not possible to generate ties and skeletons at the same time, they must be generated separately. The following commands generate the bindings for the Tie Model:<informalexample><screen>   example% <userinput>idlj -fall My.idl</userinput>
  45.    example% <userinput>idlj -fallTIE My.idl</userinput></screen>
  46. </informalexample></para>
  47. <para>For the interface <literal>My</literal>, the second command generates <literal>MyPOATie.java</literal>. The constructor to <literal>MyPOATie</literal> takes a <literal>delegate</literal>. You must provide the implementation for <literal>delegate</literal>, but it does not have to inherit from any other class, only the interface <literal>MyOperations</literal>. But to use it with the <acronym>
  48. ORB</acronym>, you must wrap your implementation within <literal>MyPOATie</literal>. For instance:<informalexample><screen>   MyImpl myImpl = new MyImpl ();
  49.    MyPOATie tie = new MyPOATie (myImpl);
  50.    orb.connect (tie);</screen>
  51. </informalexample></para>
  52. <para>You might want to use the Tie Model instead of the typical Inheritance Model if your implementation must inherit     from some other implementation. Java allows any number of interface inheritance, but there is only one slot for class inheritance. If you use the Inheritance Model, that slot is used up. By using the Tie Model, that slot is freed up for your own use. The drawback is that it introduces
  53. a level of indirection, that is, one extra method call occurs when invoking a method.</para>
  54. <para>To generate server-side, Tie Model bindings that are compatible with older version of the <acronym>IDL</acronym>—to-Java language mapping in versions of J2SE before 1.4:<informalexample><screen>   example% <userinput>idlj -oldImplBase -fall My.idl</userinput>
  55.    example% <userinput>idlj -oldImplBase -fallTIE My.idl</userinput></screen>
  56. </informalexample></para>
  57. <para>For the interface <literal>My</literal>, this will generate <literal>My_Tie.java</literal>. The constructor to <literal>My_Tie</literal> takes an <literal>impl</literal>. You must provide the implementation for <literal>impl</literal>, but it does not have to inherit from any other class, only the interface <literal>HelloOperations</literal>. But to use it with the <acronym>ORB</acronym>, you
  58. must wrap your implementation within <literal>My_Tie</literal>. For instance:<informalexample><screen>   MyImpl myImpl = new MyImpl (); 
  59.    MyPOATie tie = new MyPOATie (myImpl); 
  60.    orb.connect (tie);</screen>
  61. </informalexample></para>
  62. </refsect2>
  63. <refsect2><title>Specifying Alternate Locations for Emitted Files</title>
  64. <para>If you want to direct the emitted files to a directory other than the current directory, invoke the compiler as:<informalexample><screen>   example% <userinput>idlj -td /altdir My.idl</userinput> </screen>
  65. </informalexample></para>
  66. <para>For the interface <literal>My</literal>, the bindings will be emitted to <literal>/altdir/My.java</literal>, and so forth, instead of <literal>./My.java</literal>.</para>
  67. </refsect2>
  68. <refsect2><title>Specifying Alternate Locations for Include Files</title>
  69. <para>If <literal>My.idl</literal> included another idl file, <literal>MyOther.idl</literal>, the compiler assumes that <literal>MyOther.idl</literal> resides in the local directory. If it resides in <filename>/includes</filename>, for example, then you would invoke the compiler with the following command:<informalexample><screen>   example% <userinput>idlj -i /includes My.idl</userinput> </screen>
  70. </informalexample></para>
  71. <para>If <literal>My.idl</literal> also included <literal>Another.idl</literal> that resided in <filename>/moreIncludes</filename>, for example, then you would invoke the compiler with the following command:<informalexample><screen>   example% <userinput>idlj -i /includes -i /moreIncludes My.idl </userinput></screen>
  72. </informalexample></para>
  73. <para>Since this form of include can become irritatingly long, another means of indicating to the compiler where to search for included files is provided. This technique is similar to the idea of an environment variable. Create a file named <literal>idl.config</literal> in a directory that is listed in your <envar>CLASSPATH</envar>. Inside of<literal> idl.config</literal>, provide a line with the following
  74. form:<informalexample><screen>   includes=/includes;/moreIncludes</screen>
  75. </informalexample></para>
  76. <para>The compiler will find this file and read in the includes list. Notice that in this example the separator character between the two directories is a semicolon (;). This separator character is platform dependent. On NT it is a semicolon, on Solaris it is a colon, and so forth. For more information on includes, read the <envar>CLASSPATH</envar> (Solaris), <envar>CLASSPATH</envar> (Linux), <envar>
  77. CLASSPATH</envar> (Windows) documentation.</para>
  78. </refsect2>
  79. <refsect2><title>Emitting Bindings for Include Files</title>
  80. <para>By default, only those interfaces, structs, and so on, that are defined in the idl file on the command line have Java bindings generated for them. The types defined in included files are not generated. For example, assume the following two idl files:<informalexample><screen>   <emphasis>My.idl</emphasis>
  81.       #include <MyOther.idl>
  82.       interface My
  83.       {
  84.       };
  85.  
  86.    <emphasis>MyOther.idl</emphasis>
  87.       interface MyOther
  88.       {
  89.       };</screen>
  90. </informalexample>The following command will only generate the java bindings for <literal>My</literal>:<informalexample><screen>   example% <userinput>idlj My.idl</userinput></screen>
  91. </informalexample></para>
  92. <para>To generate all of the types in <literal>My.idl</literal> and all of the types in the files that <literal>My.idl</literal> includes (in this example, <literal>MyOther.idl</literal>), use the following command:<informalexample><screen>   example% <userinput>idlj -emitAll My.idl</userinput></screen>
  93. </informalexample></para>
  94. <para>There is a caveat to the default rule. <literal>#include</literal> statements which appear at global scope are treated as described. These <literal>#include</literal> statements can be thought of as import statements. <literal>#include</literal> statements which appear within some enclosing scope are treated as true <literal>#include</literal> statements. This means that the code within the included
  95. file is treated as if it appeared in the original file and, therefore, Java bindings are emitted for it. Here is an example:<informalexample><screen>   <emphasis>My.idl</emphasis>
  96.       #include <MyOther.idl> 
  97.       interface My 
  98.       { 
  99.       #include <Embedded.idl> 
  100.       };
  101.  
  102.    <emphasis>MyOther.idl</emphasis>
  103.       interface MyOther 
  104.       { 
  105.       };
  106.  
  107.    <emphasis>Embedded.idl</emphasis>
  108.       enum E {one, two, three};</screen>
  109. </informalexample>Running the following command:<informalexample><screen>   example% <userinput>idlj My.idl</userinput></screen>
  110. </informalexample>will generate the following list of Java files:<informalexample><screen>   ./MyHolder.java 
  111.    ./MyHelper.java 
  112.    ./_MyStub.java 
  113.    ./MyPackage 
  114.    ./MyPackage/EHolder.java 
  115.    ./MyPackage/EHelper.java 
  116.    ./MyPackage/E.java 
  117.    ./My.java 
  118.  
  119. </screen>
  120. </informalexample></para>
  121. <para>Notice that <literal>MyOther.java</literal> was not generated because it is defined in an import-like <literal>#include</literal>. But <literal>E.java</literal> was generated because it was defined in a true <literal>#include</literal>. Also notice that since <literal>Embedded.idl</literal> was included within the scope of the interface <literal>My</literal>, it appears within the scope of <literal>
  122. My</literal> (that is, in <literal>MyPackage</literal>).</para>
  123. <para>If the <option>emitAll</option> flag had been used in the previous example, then all types in all included files would be emitted.</para>
  124. </refsect2>
  125. <refsect2><title>Inserting Package Prefixes</title>
  126. <para>Suppose that you work for a company named <literal>ABC</literal> that has constructed the following <acronym>IDL</acronym> file:<informalexample><screen>   <emphasis>Widgets.idl</emphasis>
  127.       module Widgets 
  128.       { 
  129.       interface W1 {...}; 
  130.       interface W2 {...}; 
  131.       };</screen>
  132. </informalexample></para>
  133. <para>Running this file through the IDL-to-Java compiler will place the Java bindings for <literal>W1</literal> and <literal>W2</literal> within the package <literal>Widgets</literal>. But there is an industry convention that states that a company's packages should reside within a package named <literal>com.</literal><replaceable>company name</replaceable>. The <literal>Widgets</literal> package is
  134. not good enough. To follow convention, it should be <literal>com.abc.Widgets</literal>. To place this package prefix onto the <literal>Widgets</literal> module, execute the following:<informalexample><screen>   example% <userinput>idlj -pkgPrefix Widgets com.abc Widgets.idl</userinput> </screen>
  135. </informalexample></para>
  136. <para>If you have an <acronym>IDL</acronym> file which includes <literal>Widgets.idl</literal> the <option>pkgPrefix</option> flag must appear in that command also. If it does not, then your <acronym>IDL</acronym> file will be looking for a <literal>Widgets</literal> package rather than a <literal>com.abc.Widgets</literal> package. If you have a number of these packages that require prefixes, it might
  137. be easier to place them into the <literal>idl.config</literal> file described above. Each package prefix line should be of the form:<informalexample><screen>   PkgPrefix.<type>=<prefix></screen>
  138. </informalexample></para>
  139. <para>So the line for the above example would be:<informalexample><screen>   PkgPrefix.Widgets=com.abc </screen>
  140. </informalexample></para>
  141. <para>The use of this option does not affect the Repository <acronym>ID</acronym>.</para>
  142. </refsect2>
  143. <refsect2><title>Defining Symbols Before Compilation</title>
  144. <para>You may need to define a symbol for compilation that is not defined within the <acronym>IDL</acronym> file, perhaps to include debugging code in the bindings. The command:<informalexample><screen>   example% <userinput>idlj -d MYDEF My.idl</userinput></screen>
  145. </informalexample>is the equivalent of putting the line <literal>#define MYDEF</literal> inside <literal>My.idl</literal>.</para>
  146. </refsect2>
  147. <refsect2><title>Preserving Pre-Existing Bindings</title>
  148. <para>If the Java binding files already exist, the <option>keep</option> flag will keep the compiler from overwriting them. The default is to generate all files without considering if they already exist. If you've customized those files (which you should not do unless you are very comfortable with their contents), then the <option>keep</option> option is very useful. The command:<informalexample><screen>
  149.    example% <userinput>idlj -keep My.idl</userinput></screen>
  150. </informalexample>emits all client-side bindings that do not already exist.</para>
  151. </refsect2>
  152. <refsect2><title>Viewing Progress of Compilation</title>
  153. <para>The <acronym>IDL</acronym>-to-Java compiler will generate status messages as it progresses through its phases of execution. Use the <option>v</option> option to activate this "verbose" mode:<informalexample><screen>   example% <userinput>idlj -v My.idl</userinput></screen>
  154. </informalexample></para>
  155. <para>By default, the compiler does not operate in verbose mode.</para>
  156. </refsect2>
  157. <refsect2><title>Displaying Version Information</title>
  158. <para>To display the build version of the <acronym>IDL</acronym>-to-Java compiler, specify the <option>version</option> option on the command line:<informalexample><screen>   example% <userinput>idlj -version</userinput> </screen>
  159. </informalexample></para>
  160. </refsect2>
  161. </refsect1>
  162. <refsect1><title>&opts-tt;</title>
  163. <para>The following options are supported:</para>
  164. <variablelist termlength="wholeline"><varlistentry><term remap="15"><option>d</option> <replaceable>symbol</replaceable></term><listitem><para>This is equivalent to the following line in an <acronym>IDL</acronym> file:<informalexample><screen>   #define symbol</screen>
  165. </informalexample></para>
  166. </listitem></varlistentry>
  167. <varlistentry><term remap="15"><option>emitAll</option> </term><listitem><para>Emits all types, including those found in <literal>#include</literal> files.</para>
  168. </listitem></varlistentry>
  169. <varlistentry><term remap="15"><option>f</option><replaceable>side</replaceable> </term><listitem><para>Defines what bindings to emit. <replaceable>side</replaceable> is one of <literal>client</literal>, <literal>server</literal>, <literal>serverTIE</literal>, <literal>all</literal>, or <literal>allTIE</literal>. The <option>f</option><literal>serverTIE</literal> and <option>f</option><literal>allTIE
  170. </literal> options cause delegate model skeletons to be emitted. Assumes <option>f</option><literal>client</literal> if the flag is not specified.</para>
  171. </listitem></varlistentry>
  172. <varlistentry><term remap="15"><option>i</option> <replaceable>include-path</replaceable> </term><listitem><para>By default, the current directory is scanned for included files. This option adds another directory. </para>
  173. </listitem></varlistentry>
  174. <varlistentry><term remap="15"><option>keep</option></term><listitem><para>If a file to be generated already exists, does not overwrite it. By default it is overwritten.</para>
  175. </listitem></varlistentry>
  176. <varlistentry><term remap="15"><option>noWarn</option> </term><listitem><para>Suppresses warning messages.</para>
  177. </listitem></varlistentry>
  178. <varlistentry><term remap="15"><option>oldImplBase</option></term><listitem><para>Generates skeletons compatible with old (pre-1.4) JDK <acronym>ORB</acronym>s. By default, the <acronym>POA</acronym> Inheritance Model server-side bindings are generated. This option provides backward-compatibility with older versions of the Java programming language by generating server-side bindings that are <literal>
  179. ImplBase</literal> Inheritance Model classes.</para>
  180. </listitem></varlistentry>
  181. <varlistentry><term remap="15"><option>pkgPrefix</option> <replaceable>type</replaceable> <replaceable>prefix</replaceable></term><listitem><para>Wherever <replaceable>type</replaceable> is encountered at file scope, prefixes the generated Java package name with <replaceable>prefix</replaceable> for all files generated for that type. The <replaceable>type</replaceable> is the simple name of either a
  182. top-level module, or an <acronym>IDL</acronym> type defined outside of any module.</para>
  183. </listitem></varlistentry>
  184. <varlistentry><term remap="15"><option>pkgTranslate</option> <replaceable>type</replaceable> <replaceable>package</replaceable></term><listitem><para>Whenever the module name <replaceable>type</replaceable> is encountered in an identifier, this option replaces it in the identifier with <replaceable>package</replaceable> for all files in the generated Java package. Notice that <option>pkgPrefix</option>
  185. changes are made first. <replaceable>type</replaceable> is the simple name of either a top-level module, or an <acronym>IDL</acronym> type defined outside of any module, and must match the full package name exactly.</para>
  186. <para>If more than one translation matches an identifier, the longest match is chosen. For example, if the arguments include:<informalexample><screen>   example% <userinput>-pkgTranslate foo bar -pkgTranslate foo.baz buzz.fizz</userinput></screen>
  187. </informalexample>The following translations would occur:<informalexample><screen>   foo          => bar
  188.    foo.boo      => bar.boo
  189.    foo.baz      => buzz.fizz
  190.    foo.baz.bar  => buzz.fizz.bar</screen>
  191. </informalexample></para>
  192. <para>The following package names cannot be translated:<itemizedlist>
  193. <listitem><para><literal>org</literal></para>
  194. </listitem>
  195. <listitem><para><literal>org.omg</literal> or any subpackages of <literal>org.omg</literal></para>
  196. </listitem>
  197. </itemizedlist></para>
  198. <para>Any attempt to translate these packages will result in uncompilable code, and the use of these packages as the first argument after <option>pkgTranslate</option> will be treated as an error.</para>
  199. </listitem></varlistentry>
  200. <varlistentry><term remap="15"><option>skeletonName</option> <replaceable>xxx%yyy</replaceable></term><listitem><para>Uses <replaceable>xxx%yyy</replaceable> as the pattern for naming the skeleton. The defaults are:<itemizedlist>
  201. <listitem><para><literal>%POA</literal> for the <acronym>POA</acronym> base class (<option>f</option><literal>server</literal> or <option>fall</option>).</para>
  202. </listitem>
  203. <listitem><para><literal>_%ImplBase</literal> for the <literal>oldImplBase</literal> class (<option>oldImplBase</option> and either <option>f</option><literal>server</literal> or <option>fall</option>).</para>
  204. </listitem>
  205. </itemizedlist></para>
  206. </listitem></varlistentry>
  207. <varlistentry><term remap="15"><option>td</option> <replaceable>dir</replaceable></term><listitem><para>Uses <replaceable>dir</replaceable> for the output directory instead of the current directory.</para>
  208. </listitem></varlistentry>
  209. <varlistentry><term remap="15"><option>tieName</option> <replaceable>xxx%yyy</replaceable></term><listitem><para>Uses <replaceable>xxx%yyy</replaceable> as the pattern for naming the tie. The defaults are:<itemizedlist>
  210. <listitem><para><literal>%POATie</literal> for the <acronym>POA</acronym> tie base class (<option>f</option><literal>server</literal> or <option>fallTie</option>).</para>
  211. </listitem>
  212. <listitem><para><literal>%_Tie</literal> for the <literal>oldImplBase</literal> class (<option>oldImplBase</option> and either <option>f</option><literal>serverTie</literal> or <option>fallTie</option>).</para>
  213. </listitem>
  214. </itemizedlist></para>
  215. </listitem></varlistentry>
  216. <varlistentry><term><option>nowarn</option></term><term remap="15"><option>verbose</option> </term><listitem><para>Verbose mode.</para>
  217. </listitem></varlistentry>
  218. <varlistentry><term><option>version</option></term><listitem><para>Displays version information and terminates.</para>
  219. </listitem></varlistentry>
  220. </variablelist></refsect1>
  221. <refsect1><title>&envr-tt;</title>
  222. <variablelist termlength="narrow"><varlistentry><term remap="15"><envar>CLASSPATH</envar> </term><listitem><para>Used to provide the system with a path to user-defined classes. Directories are separated by colons. For example: <informalexample><para><literal>.:/home/avh/classes:/usr/local/java/classes</literal> </para>
  223. </informalexample></para>
  224. </listitem></varlistentry>
  225. </variablelist></refsect1>
  226. <refsect1><title>RESTRICTIONS</title>
  227. <itemizedlist>
  228. <listitem><para>Escaped identifiers in the global scope may not have the same spelling as <acronym>IDL</acronym> primitive types, <literal>Object</literal> or <literal>ValueBase</literal>. This is because the symbol table is pre-loaded with these identifiers. Allowing them to be redefined would overwrite their original definitions. (Possible permanent restriction).</para></listitem>
  229. <listitem><para>The fixed <acronym>IDL</acronym><?Pub Caret1> type is not supported.</para></listitem>
  230. </itemizedlist>
  231. </refsect1>
  232. <refsect1><title>&attr-tt;</title>
  233. <para>See <citerefentry><refentrytitle>attributes</refentrytitle><manvolnum>5</manvolnum></citerefentry> for a description of the following attributes:</para>
  234. <informaltable frame="All" orient="Port">
  235. <tgroup cols="2" colsep="1" rowsep="1"><colspec colnum="1" colname="col1" colwidth="1*" colsep="1" align="Left"><colspec colnum="2" colname="col2" colwidth="1*" align="Left">
  236. <thead>
  237. <row><entry colname="col1" align="center" valign="top">ATTRIBUTE TYPE</entry><entry colname="col2" align="center" valign="top">ATTRIBUTE VALUE</entry></row>
  238. </thead>
  239. <tbody>
  240. <row><entry>Availability</entry><entry>SUNWj3dev</entry></row>
  241. </tbody>
  242. </tgroup>
  243. </informaltable>
  244. </refsect1>
  245. <refsect1><title>&also-tt;</title>
  246. <para><citerefentry><refentrytitle>attributes</refentrytitle><manvolnum>5</manvolnum></citerefentry> </para>
  247. <para><citetitle>OMG IDL to Java Language Mapping Specification</citetitle></para>
  248. </refsect1>
  249. <refsect1><title>&bugs-tt;</title>
  250. <para>No import is generated for global identifiers. If you invoke on an unexported local <literal>impl</literal>, you do get an exception, but it seems to be due to a Null Ptr Exception in the <literal>ServerDelegate</literal> <acronym>DSI</acronym> code.</para>
  251. </refsect1>
  252. </refentry>
  253. <?Pub *0000025747 0>
  254.