make fields package access

This commit is contained in:
Doug MacEachern 2004-11-21 03:07:39 +00:00
parent a4ed059eae
commit f038a56119
1 changed files with 9 additions and 9 deletions

View File

@ -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() {