package edu.nju.algorithm.progress; /** * @author xujiawei */ public interface ConstantsForProgress { // final static Integer FIELD_INDEX_TEST_CASE_ID = 0; // final static Integer FIELD_INDEX_USER_ID = 1; // final static Integer FIELD_INDEX_TEST_CASE_NAME = 2; // final static Integer FIELD_INDEX_BUG_DETAIL = 9; // final static Integer FIELD_INDEX_REPRO_STEPS = 10; // final static Integer FIELD_INDEX_SUBMIT_TIME = 15; // final static Integer FIELD_BUG_TAG = 14; // final static Integer FIELD_DUP_TAG = 17; //17 corresponds to R column, 18 corresponds to S column // YK add final static String FIELD_BUG_ID = "bug_id"; final static String FIELD_TEST_CASE_ID = "test_case_id"; final static String FIELD_USER_ID = "worker_id"; final static String FIELD_TEST_CASE_NAME = "test_case_name"; final static String FIELD_BUG_DETAIL = "title"; final static String FIELD_REPRO_STEPS = "description"; final static String FIELD_SUBMIT_TIME = "bug_create_time"; final static String FIELD_BUG_TAG = "severity"; final static String FIELD_DUP_TAG = "bug_page"; //17 corresponds to R column, 18 corresponds to S column final static double SIM_THRESHOLD = 0.01; int captureSize = 6; int equalTimeThres = 2; final static String projectFolder = "data/demoProjects"; Integer sampleStep = 10; }