/plugins/JPyDbg/trunk/src/org/jymc/jpydebug/utils/ExecTerminationEvent.java

# · Java · 48 lines · 16 code · 7 blank · 25 comment · 0 complexity · 56ffc2c855fb07422c586ff1412b38a8 MD5 · raw file

  1. /**
  2. * Copyright (C) 1998,1999,200,2001,2002,2003 Jean-Yves Mengant
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. package org.jymc.jpydebug.utils;
  19. /**
  20. event associated with process termination
  21. @author Jean-Yves MENGANT
  22. */
  23. public class ExecTerminationEvent {
  24. private int _code ;
  25. private String _errMessage ;
  26. public ExecTerminationEvent( int code ,
  27. String errMessage
  28. )
  29. {
  30. _code = code ;
  31. _errMessage = errMessage ;
  32. }
  33. public int get_code()
  34. { return _code ; }
  35. public String get_errMessage()
  36. { return _errMessage ; }
  37. }