| Line | Hits | Source |
|---|---|---|
| 1 | package umich.cac.pbs; | |
| 2 | ||
| 3 | /** | |
| 4 | * A file that has static typed record positions of the various record fields | |
| 5 | * in the PBS accounting file. For example the format of the file is | |
| 6 | * | |
| 7 | * <pre> | |
| 8 | * DATE_TIME;RECORD_TYPE;JOB_ID;MESSAGE_AREA 0 1 2 3 | |
| 9 | * </pre> | |
| 10 | * | |
| 11 | * This class encapsulates the position information of these fields | |
| 12 | * | |
| 13 | * @author rmach@umich.edu | |
| 14 | * @version $Header $ | |
| 15 | */ | |
| 16 | 0 | public class RecordPosition { |
| 17 | ||
| 18 | /** The MAX length of an accounting field */ | |
| 19 | 3 | public static int FIELD_LENGTH_MAX = 4; |
| 20 | ||
| 21 | /** THe MIN length of an accounting field */ | |
| 22 | 3 | public static int FIELD_LENGTH_MIN = 3; |
| 23 | /** The position of the PBS Date and Time in the log file */ | |
| 24 | 3 | public static int DATE_TIME = 0; |
| 25 | ||
| 26 | /** The position of the PBS record type in the log file */ | |
| 27 | 3 | public static int RECORD_TYPE = 1; |
| 28 | ||
| 29 | /** The position of the PBS job id in the log file */ | |
| 30 | 3 | public static int JOB_ID = 2; |
| 31 | ||
| 32 | /** The position of the message area */ | |
| 33 | 3 | public static int MESSAGE_AREA = 3; |
| 34 | ||
| 35 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |