mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Add EntryInfo class (missed in previous commit).
This commit is contained in:
15
java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java
Normal file
15
java/src/edu/wpi/first/wpilibj/networktables/EntryInfo.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user