1 37 46 package net.sourceforge.cruisecontrol.sourcecontrols.accurev; 47 48 53 public final class TransactionNumberTimespec extends Timespec { 54 57 public static final KeywordTimespec HIGHEST = new KeywordTimespec("highest"); 58 private int transaction; 59 60 65 public TransactionNumberTimespec(int transaction) { 66 this.transaction = transaction; 67 } 68 69 75 public TransactionNumberTimespec(int transaction, int count) { 76 super(count); 77 this.transaction = transaction; 78 } 79 80 85 public String format() { 86 return Integer.toString(transaction); 87 } 88 } 89 | Popular Tags |