-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathAddTrackerRequestT.java
More file actions
64 lines (42 loc) · 1.85 KB
/
Copy pathAddTrackerRequestT.java
File metadata and controls
64 lines (42 loc) · 1.85 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// automatically generated by the FlatBuffers compiler, do not modify
package solarxr_protocol.rpc;
import java.nio.*;
import java.lang.*;
import java.util.*;
import com.google.flatbuffers.*;
public class AddTrackerRequestT {
private String name;
private String displayName;
private String manufacturer;
private boolean tracksRotation;
private boolean tracksAcceleration;
private boolean tracksPosition;
private Integer roleHint;
private boolean isHmd;
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public String getDisplayName() { return displayName; }
public void setDisplayName(String displayName) { this.displayName = displayName; }
public String getManufacturer() { return manufacturer; }
public void setManufacturer(String manufacturer) { this.manufacturer = manufacturer; }
public boolean getTracksRotation() { return tracksRotation; }
public void setTracksRotation(boolean tracksRotation) { this.tracksRotation = tracksRotation; }
public boolean getTracksAcceleration() { return tracksAcceleration; }
public void setTracksAcceleration(boolean tracksAcceleration) { this.tracksAcceleration = tracksAcceleration; }
public boolean getTracksPosition() { return tracksPosition; }
public void setTracksPosition(boolean tracksPosition) { this.tracksPosition = tracksPosition; }
public Integer getRoleHint() { return roleHint; }
public void setRoleHint(Integer roleHint) { this.roleHint = roleHint; }
public boolean getIsHmd() { return isHmd; }
public void setIsHmd(boolean isHmd) { this.isHmd = isHmd; }
public AddTrackerRequestT() {
this.name = null;
this.displayName = null;
this.manufacturer = null;
this.tracksRotation = false;
this.tracksAcceleration = false;
this.tracksPosition = false;
this.roleHint = null;
this.isHmd = false;
}
}