Add EntryInfo class (missed in previous commit).

This commit is contained in:
Peter Johnson
2015-09-16 00:53:14 -07:00
parent c5d456f3a6
commit e42f9b0603

View File

@@ -0,0 +1,15 @@
package edu.wpi.first.wpilibj.networktables;
public class EntryInfo {
final String name;
final int type;
final int flags;
final long last_change;
EntryInfo(String name, int type, int flags, long last_change) {
this.name = name;
this.type = type;
this.flags = flags;
this.last_change = last_change;
}
}