• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 package ohos.devtools.views.trace.bean;
18 
19 import ohos.devtools.views.trace.DField;
20 
21 /**
22  * BinderArg
23  *
24  * @since 2021/6/29 10:55
25  */
26 public class BinderArg {
27     @DField(name = "argset")
28     private Integer argset;
29     @DField(name = "keyName")
30     private String keyName;
31     @DField(name = "id")
32     private Integer id;
33     @DField(name = "desc")
34     private String desc;
35     @DField(name = "strValue")
36     private String strValue;
37 
38     /**
39      * Get argset
40      *
41      * @return argset
42      */
getArgset()43     public Integer getArgset() {
44         return argset;
45     }
46 
47     /**
48      * set argset
49      *
50      * @param argset argset
51      */
setArgset(Integer argset)52     public void setArgset(Integer argset) {
53         this.argset = argset;
54     }
55 
56     /**
57      * Get keyName
58      *
59      * @return keyName
60      */
getKeyName()61     public String getKeyName() {
62         return keyName;
63     }
64 
65     /**
66      * set keyName
67      *
68      * @param keyName keyName
69      */
setKeyName(String keyName)70     public void setKeyName(String keyName) {
71         this.keyName = keyName;
72     }
73 
74     /**
75      * Get id
76      *
77      * @return id
78      */
getId()79     public Integer getId() {
80         return id;
81     }
82 
83     /**
84      * set id
85      *
86      * @param id id
87      */
setId(Integer id)88     public void setId(Integer id) {
89         this.id = id;
90     }
91 
92     /**
93      * Get desc
94      *
95      * @return desc
96      */
getDesc()97     public String getDesc() {
98         return desc;
99     }
100 
101     /**
102      * set desc
103      *
104      * @param desc desc
105      */
setDesc(String desc)106     public void setDesc(String desc) {
107         this.desc = desc;
108     }
109 
110     /**
111      * Get strValue
112      *
113      * @return strValue
114      */
getStrValue()115     public String getStrValue() {
116         return strValue;
117     }
118 
119     /**
120      * set strValue
121      *
122      * @param strValue strValue
123      */
setStrValue(String strValue)124     public void setStrValue(String strValue) {
125         this.strValue = strValue;
126     }
127 }
128