1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/*
========== licence begin GPL
Copyright (C) 2002-2003 SAP AG
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 (at your option) 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.
========== licence end
*/
package com.sap.dbtech.vsp001;
/**
* copy of vsp001::tsp1_intern_warning
*/
public abstract class InternWarning {
public static final int Warn0_C = 0;
public static final int Warn1_C = 1;
public static final int Warn2_C = 2;
public static final int Warn3_C = 3;
public static final int Warn4_C = 4;
public static final int Warn5_C = 5;
public static final int Warn6_C = 6;
public static final int Warn7_C = 7;
public static final int Warn8_C = 8;
public static final int Warn9_C = 9;
public static final int Warn10_C = 10;
public static final int Warn11_C = 11;
public static final int Warn12_C = 12;
public static final int Warn13_C = 13;
public static final int Warn14_C = 14;
public static final int Warn15_C = 15;
}
|