-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseDebugIncidentReportDelete.java
43 lines (32 loc) · 1.22 KB
/
BaseDebugIncidentReportDelete.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.frontier_silicon.NetRemoteLib.Node;
import com.frontier_silicon.NetRemoteLib.Node.NodeInfo;
public class BaseDebugIncidentReportCreate extends NodeU8 implements NodeInfo {
private static final NodeInfo.NodePrototype Prototype = new NodeInfo.NodePrototype(new NodeInfo.NodePrototype.Arg(NodeInfo.NodePrototype.Arg.ArgDataType.U8));
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public boolean IsCacheable() {
return false;
}
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public boolean IsNotifying() {
return false;
}
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public boolean IsReadOnly() {
return false;
}
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public long getAddress() {
return 281026560L;
}
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public String getName() {
return "netRemote.debug.incidentReport.delete";
}
@Override // com.frontier_silicon.NetRemoteLib.Node.NodeInfo
public NodeInfo.NodePrototype getPrototype() {
return Prototype;
}
public BaseDebugIncidentReportCreate(Long l) {
super(l);
}
}