-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigProperties.java
More file actions
15 lines (14 loc) · 924 Bytes
/
ConfigProperties.java
File metadata and controls
15 lines (14 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.variantsync.vevos.extraction;
public class ConfigProperties {
public static final String PRINT_ENABLED = "extraction.print-enabled";
public static final String GT_SAVE_DIR = "extraction.gt-save-dir";
public static final String IGNORE_PC_CHANGES = "extraction.ignore-pc-changes";
public static final String DATASET_FILE = "diff-detective.dataset-file";
public static final String DD_OUTPUT_DIR = "diff-detective.output-dir";
public static final String REPO_SAVE_DIR = "diff-detective.repo-storage-dir";
public static final String NUM_THREADS = "diff-detective.num-threads";
public static final String BATCH_SIZE = "diff-detective.batch-size";
public static final String PARSER = "diff-detective.parser";
public static final String EXTRACT_CODE_MATCHING = "extraction.extract-code-matching";
public static final String FILE_EXTENSIONS = "extraction.file-extensions";
}