Java Code Examples for com.sun.tools.corba.se.idl.SymtabEntry#generate()
The following examples show how to use
com.sun.tools.corba.se.idl.SymtabEntry#generate() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ModuleGen.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 2
Source File: ModuleGen.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 3
Source File: ModuleGen.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 4
Source File: UnionGen.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 5
Source File: ModuleGen.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 6
Source File: UnionGen.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 7
Source File: UnionGen.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 8
Source File: StructGen.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { // Generate all of the contained types Enumeration e = s.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this struct. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 9
Source File: StructGen.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { // Generate all of the contained types Enumeration e = s.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this struct. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 10
Source File: UnionGen.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 11
Source File: StructGen.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { // Generate all of the contained types Enumeration e = s.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this struct. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 12
Source File: StructGen.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { // Generate all of the contained types Enumeration e = s.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this struct. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 13
Source File: UnionGen.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 14
Source File: ModuleGen.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 15
Source File: StructGen.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { // Generate all of the contained types Enumeration e = s.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this struct. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 16
Source File: UnionGen.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 17
Source File: ModuleGen.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }
Example 18
Source File: UnionGen.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 19
Source File: UnionGen.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * **/ protected void generateContainedTypes () { Enumeration e = u.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry entry = (SymtabEntry)e.nextElement (); // Don't generate contained entries if they are sequences. // Sequences are unnamed and since they translate to arrays, // no classes are generated for them, not even holders in this // case since they cannot be accessed outside of this union. if (!(entry instanceof SequenceEntry)) entry.generate (symbolTable, stream); } }
Example 20
Source File: ModuleGen.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Generate Java code for all members of an IDL module. **/ public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) { // Generate the package directory String name = Util.containerFullName( entry ) ; Util.mkdir (name); // Generate all of the contained types Enumeration e = entry.contained ().elements (); while (e.hasMoreElements ()) { SymtabEntry element = (SymtabEntry)e.nextElement (); if (element.emit ()) element.generate (symbolTable, stream); } }