< prev index next >

src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/MethodGen24.java

Print this page

        

*** 94,104 **** // end of parameter list } } /** ! * <d62023> Write the methodEntry for a valuetype factory method into * the Value Helper class. Contents from email from Simon, * 4/25/99. **/ protected void helperFactoryMethod (Hashtable symbolTable, MethodEntry m, SymtabEntry t, PrintWriter stream) { --- 94,104 ---- // end of parameter list } } /** ! * d62023 - write the methodEntry for a valuetype factory method into * the Value Helper class. Contents from email from Simon, * 4/25/99. **/ protected void helperFactoryMethod (Hashtable symbolTable, MethodEntry m, SymtabEntry t, PrintWriter stream) {
*** 133,143 **** stream.println (" }"); stream.println (); } // helperFactoryMethod /** ! * <d62023> - write an abstract method definition **/ protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable; this.m = m; --- 133,143 ---- stream.println (" }"); stream.println (); } // helperFactoryMethod /** ! * d62023 - write an abstract method definition **/ protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable; this.m = m;
*** 150,161 **** stream.println (";"); stream.println (); } // abstractMethod /** ! * <d62023> - write a default factory method implementation for the ! * <value>DefaultFactory. m is a methodEntry for a factory * method contained in a non-abstract ValueEntry. **/ protected void defaultFactoryMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable; --- 150,161 ---- stream.println (";"); stream.println (); } // abstractMethod /** ! * d62023 - write a default factory method implementation for the ! * {@code <value>DefaultFactory}. m is a methodEntry for a factory * method contained in a non-abstract ValueEntry. **/ protected void defaultFactoryMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable;
*** 174,184 **** stream.println (");"); stream.println (" }"); } // defaultFactoryMethod /** ! * <d62023> - remove all valueInitializer junk **/ protected void writeMethodSignature () { // Step 0. Print the return type and name. // A return type of null indicates the "void" return type. If m is a --- 174,184 ---- stream.println (");"); stream.println (" }"); } // defaultFactoryMethod /** ! * d62023 - remove all valueInitializer junk **/ protected void writeMethodSignature () { // Step 0. Print the return type and name. // A return type of null indicates the "void" return type. If m is a
*** 240,250 **** else stream.print (')'); } // writeMethodSignature /** ! * <d62023> - delete method templates for valuetypes **/ protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable; this.m = m; --- 240,250 ---- else stream.print (')'); } // writeMethodSignature /** ! * d62023 - delete method templates for valuetypes **/ protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream) { this.symbolTable = symbolTable; this.m = m;
< prev index next >