-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccidentTypeCode.java
30 lines (22 loc) · 1.19 KB
/
AccidentTypeCode.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
/*
WARNING: THIS FILE IS AUTO-GENERATED. DO NOT MODIFY.
This file was generated from .idl using "rtiddsgen".
The rtiddsgen tool is part of the RTI Connext distribution.
For more information, type 'rtiddsgen -help' at a command shell
or consult the RTI Connext manual.
*/
import com.rti.dds.typecode.*;
public class AccidentTypeCode {
public static final TypeCode VALUE = getTypeCode();
private static TypeCode getTypeCode() {
TypeCode tc = null;
int __i=0;
StructMember sm[]=new StructMember[4];
sm[__i]=new StructMember("timestamp", false, (short)-1, false,(TypeCode) new TypeCode(TCKind.TK_STRING,255),0 , false);__i++;
sm[__i]=new StructMember("route", false, (short)-1, false,(TypeCode) new TypeCode(TCKind.TK_STRING,255),1 , false);__i++;
sm[__i]=new StructMember("vehicle", false, (short)-1, false,(TypeCode) new TypeCode(TCKind.TK_STRING,255),2 , false);__i++;
sm[__i]=new StructMember("stopNumber", false, (short)-1, false,(TypeCode) TypeCode.TC_LONG,3 , false);__i++;
tc = TypeCodeFactory.TheTypeCodeFactory.create_struct_tc("Accident",ExtensibilityKind.EXTENSIBLE_EXTENSIBILITY, sm);
return tc;
}
}