com.sun.tools.corba.se.idl.NativeEntry Java Examples
The following examples show how to use
com.sun.tools.corba.se.idl.NativeEntry.
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: Util.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #2
Source File: Util.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #3
Source File: Util.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #4
Source File: Util.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #5
Source File: Util.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #6
Source File: Util.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #7
Source File: Util.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #8
Source File: Util.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * **/ public static String holderName (SymtabEntry entry) { String name; if (entry instanceof PrimitiveEntry) if (entry.name ().equals ("any")) name = "org.omg.CORBA.AnyHolder"; else if (entry.name ().equals ("TypeCode")) name = "org.omg.CORBA.TypeCodeHolder"; else if (entry.name ().equals ("Principal")) // <d61961> name = "org.omg.CORBA.PrincipalHolder"; else name = "org.omg.CORBA." + capitalize (javaQualifiedName (entry)) + "Holder"; else if (entry instanceof TypedefEntry) { TypedefEntry td = (TypedefEntry)entry; if (!td.arrayInfo ().isEmpty () || td.type () instanceof SequenceEntry) name = javaQualifiedName (entry) + "Holder"; else name = holderName (entry.type ()); } else if (entry instanceof StringEntry) name = "org.omg.CORBA.StringHolder"; else if (entry instanceof ValueEntry) { if (entry.name ().equals ("ValueBase")) name = "org.omg.CORBA.ValueBaseHolder"; // <d59421>, <d60929> else name = javaName (entry) + "Holder"; } else if (entry instanceof NativeEntry) { // do not attach holder to the translation for Native Entries, e.g. // for Cookie it should be CookieHolder instead of java.lang.ObjectHolder // returns the complete name for the package, etc. name = javaQualifiedName(entry) + "Holder"; } else name = javaName (entry) + "Holder"; return name; }
Example #9
Source File: Util.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #10
Source File: Util.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #11
Source File: Util.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #12
Source File: Util.java From hottub with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #13
Source File: Util.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #14
Source File: Util.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #15
Source File: Util.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #16
Source File: Util.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Given a SymtabEntry, return the string which should be used * for this entry. Enums are converted to ints, typedefs and * sequences are converted to their info types. javaQualifiedName * does not do any of these conversions. **/ public static String javaName (SymtabEntry entry) { // First get the real name of this type String name = ""; if (entry instanceof TypedefEntry || entry instanceof SequenceEntry) try { name = sansArrayInfo ((String)entry.dynamicVariable (Compile.typedefInfo)); } catch (NoSuchFieldException e) { name = entry.name (); } else if (entry instanceof PrimitiveEntry) name = javaPrimName (entry.name ()); else if (entry instanceof StringEntry) name = "String"; else if (entry instanceof NativeEntry) name = javaNativeName (entry.name()); else if (entry instanceof ValueEntry && entry.name ().equals ("ValueBase")) name = "java.io.Serializable"; else if (entry instanceof ValueBoxEntry) { ValueBoxEntry v = (ValueBoxEntry) entry; TypedefEntry member = ((InterfaceState) v.state ().elementAt (0)).entry; SymtabEntry mType = member.type (); if (mType instanceof PrimitiveEntry) { name = containerFullName (entry.container ()); if (!name.equals ("")) name = name + '.'; name = name + entry.name (); } else name = javaName (mType); } else { name = containerFullName (entry.container ()); if (name.equals ("")) name = entry.name (); else name = name + '.' + entry.name (); } // Make it a fully package-qualified name return name.replace ('/', '.'); }
Example #17
Source File: NativeGen.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #18
Source File: NativeGen.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #19
Source File: NativeGen.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #20
Source File: NativeGen.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #21
Source File: NativeGen.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #22
Source File: NativeGen.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #23
Source File: NativeGen.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }
Example #24
Source File: NativeGen.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Generate Java code for an IDL constant. A constant is written to * a new class only when it is not a member of an interface; otherwise * it written to the interface class in which it resides. **/ public void generate (Hashtable symbolTable, NativeEntry c, PrintWriter s) { // noop, do not generate anything }