/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
- /**
- * Copyright (C) 1998,1999,200,2001,2002,2003 Jean-Yves Mengant
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- package org.jymc.jpydebug.utils;
- /**
- event associated with process termination
- @author Jean-Yves MENGANT
- */
- public class ExecTerminationEvent {
- private int _code ;
- private String _errMessage ;
- public ExecTerminationEvent( int code ,
- String errMessage
- )
- {
- _code = code ;
- _errMessage = errMessage ;
- }
- public int get_code()
- { return _code ; }
- public String get_errMessage()
- { return _errMessage ; }
- }