1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 package ohos.devtools; 17 18 /** 19 * Config 20 * 21 * @since 2021/09/03 11:25 22 */ 23 public class Config { 24 /** 25 * TRACE SYS 26 */ 27 public static final String TRACE_SYS = Config.class.getResource("/trace_db/trace_sys.db").getFile(); 28 29 /** 30 * TRACE APP 31 */ 32 public static final String TRACE_APP = Config.class.getResource("/trace_db/trace_app.db").getFile(); 33 34 /** 35 * TRACE CPU 36 */ 37 public static final String TRACE_CPU = Config.class.getResource("/trace_db/trace_cpu.db").getFile(); 38 39 /** 40 * TRACE PREF 41 */ 42 public static final String TRACE_PREF = Config.class.getResource("/trace_db/trace_pref.db").getFile(); 43 44 /** 45 * TRACE DISTRIBUTED A 46 */ 47 public static final String TRACE_DISTRIBUTED_A = 48 Config.class.getResource("/trace_db/trace_distributed_deviceA.db").getFile(); 49 50 /** 51 * TRACE DISTRIBUTED B 52 */ 53 public static final String TRACE_DISTRIBUTED_B = 54 Config.class.getResource("/trace_db/trace_distributed_deviceB.db").getFile(); 55 } 56