From: Jan S. <st...@us...> - 2002-05-16 11:45:21
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect In directory usw-pr-cvs1:/tmp/cvs-serv22854 Modified Files: SocketAttachConnector.java ShmemAttachConnector.java Log Message: Some messages internacionalized. Index: SocketAttachConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SocketAttachConnector.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** SocketAttachConnector.java 20 Apr 2002 10:46:21 -0000 1.4 --- SocketAttachConnector.java 16 May 2002 11:45:17 -0000 1.5 *************** *** 61,65 **** } if (port==-1) { ! throw new IllegalConnectorArgumentsException("Wrong or missing port number.", "port"); } IProf iprof=new IProf(new CommunSetupSocket(CommunSetupSocket.CLIENT_MODE, host, port)); --- 61,65 ---- } if (port==-1) { ! throw new IllegalConnectorArgumentsException(bundle.getString("ERR_MIS_PORT"), "port"); } IProf iprof=new IProf(new CommunSetupSocket(CommunSetupSocket.CLIENT_MODE, host, port)); *************** *** 67,71 **** iprof.run(); } catch (IProfException ipe) { ! throw new ConnectingException("Unable to connect to the profiled process: "+ipe); } return new VirtualMachineImpl(iprof); --- 67,71 ---- iprof.run(); } catch (IProfException ipe) { ! throw new ConnectingException(bundle.getString("ERR_CONNECT")+ipe); } return new VirtualMachineImpl(iprof); *************** *** 139,142 **** --- 139,145 ---- /* * $Log$ + * Revision 1.5 2002/05/16 11:45:17 stolis + * Some messages internacionalized. + * * Revision 1.4 2002/04/20 10:46:21 stolis * Changes forced by the change of the IProf.run method prototype. Index: ShmemAttachConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ShmemAttachConnector.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** ShmemAttachConnector.java 20 Apr 2002 10:46:21 -0000 1.4 --- ShmemAttachConnector.java 16 May 2002 11:45:17 -0000 1.5 *************** *** 54,58 **** } if (address==null) { ! throw new IllegalConnectorArgumentsException("Wrong or missing shared memory area address.", "address"); } IProf iprof=new IProf(new CommunSetupShMem(address, 256*1024)); --- 54,58 ---- } if (address==null) { ! throw new IllegalConnectorArgumentsException(bundle.getString("ERR_MIS_SHMEM"), "address"); } IProf iprof=new IProf(new CommunSetupShMem(address, 256*1024)); *************** *** 60,64 **** iprof.run(); } catch (IProfException ipe) { ! throw new ConnectingException("Unable to connect to the profiled process: "+ipe); } return new VirtualMachineImpl(iprof); --- 60,64 ---- iprof.run(); } catch (IProfException ipe) { ! throw new ConnectingException(bundle.getString("ERR_CONNECT")+ipe); } return new VirtualMachineImpl(iprof); *************** *** 128,131 **** --- 128,134 ---- /* * $Log$ + * Revision 1.5 2002/05/16 11:45:17 stolis + * Some messages internacionalized. + * * Revision 1.4 2002/04/20 10:46:21 stolis * Changes forced by the change of the IProf.run method prototype. |