make fields package access
This commit is contained in:
parent
a4ed059eae
commit
f038a56119
|
@ -5,17 +5,17 @@ package net.hyperic.sigar.win32;
|
||||||
*/
|
*/
|
||||||
public class EventLogRecord {
|
public class EventLogRecord {
|
||||||
|
|
||||||
public long recordNumber;
|
long recordNumber;
|
||||||
public long timeGenerated;
|
long timeGenerated;
|
||||||
public long timeWritten;
|
long timeWritten;
|
||||||
public long eventId;
|
long eventId;
|
||||||
|
|
||||||
public short eventType;
|
short eventType;
|
||||||
|
|
||||||
public String source;
|
String source;
|
||||||
public String computerName;
|
String computerName;
|
||||||
public String user;
|
String user;
|
||||||
public String stringData;
|
String stringData;
|
||||||
|
|
||||||
/* Get the record number for this event entry */
|
/* Get the record number for this event entry */
|
||||||
public long getRecordNumber() {
|
public long getRecordNumber() {
|
||||||
|
|
Loading…
Reference in New Issue