001package com.thed.zblast.parser.util; 002 003public abstract interface ZConstantsResults 004{ 005 short RESULT_NO_RESULT = -1; 006 short RESULT_NOT_EXECUTED = 0; 007 short RESULT_SUCCESS = 1; 008 short RESULT_FAILURE = 2; 009 short RESULT_RELATIVE = 3; 010 short RESULT_NOT_EXECUTABLE = 4; 011 short RESULT_UNKNOWN = 6; 012 short RESULT_INFO = 8; 013 short REQUEST_PREVIOUSTEST = 10; 014 short REQUEST_PREVIOUSTESTCASE = 11; 015 short REQUEST_REWINDTESTCASE = 12; 016 short REQUEST_PAUSE = 13; 017 short REQUEST_NEXTTESTCASE = 14; 018 short REQUEST_NEXTTEST = 15; 019 short REQUEST_NEWDEFECT = 20; 020 short REQUEST_EXISTINGDEFECT = 21; 021}