OSDN Git Service

* config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
[pf3gnuchains/gcc-fork.git] / libjava / classpath / tools / gnu / classpath / tools / giop / grmic / templates / StubMethodVoid.jav
1   /** @inheritDoc */
2   public #return_type #method_name(#argument_list) #throws
3   {
4     try
5       {
6         InputStream in = null;
7         try
8           {
9              OutputStream out = 
10                (OutputStream) _request("#giop_method_name", true);
11 #argument_write                
12              in = _invoke(out);
13           }
14         catch (ApplicationException ex)
15           {
16              in = ex.getInputStream();
17              throw new UnexpectedException(in.read_string());
18           }
19         catch (RemarshalException ex)
20           {
21              #method_name(#argument_names);
22           }
23         finally
24           {
25              _releaseReply(in);
26           }
27         }
28     catch (SystemException ex)
29       {
30         throw Util.mapSystemException(ex);
31       }
32    }