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.views.layout.chartview; 17 18 /** 19 * Profiler的监控项 20 * 21 * @since 2021/11/22 22 */ 23 public class ProfilerMonitorItem { 24 private int index; 25 private final String name; 26 private final Class<? extends MonitorItemView> clazz; 27 28 /** 29 * ProfilerMonitorItem 30 * 31 * @param index index 32 * @param name name 33 * @param clazz clazz 34 */ ProfilerMonitorItem(int index, String name, Class<? extends MonitorItemView> clazz)35 public ProfilerMonitorItem(int index, String name, Class<? extends MonitorItemView> clazz) { 36 this.index = index; 37 this.name = name; 38 this.clazz = clazz; 39 } 40 41 /** 42 * getName 43 * 44 * @return String name 45 */ getName()46 public String getName() { 47 return name; 48 } 49 50 /** 51 * getClazz 52 * 53 * @return Class <MonitorItemView> 54 */ getClazz()55 public Class<? extends MonitorItemView> getClazz() { 56 return clazz; 57 } 58 59 /** 60 * getIndex 61 * 62 * @return int index 63 */ getIndex()64 public int getIndex() { 65 return index; 66 } 67 } 68