I'm trying to code an implementation of Martin Fowler's recurring event calendar found here and I understand most of it but in all of his abstract classes he passed a string named eventArgs as a parameter.
For example:
class Schedule {
public boolean isOccuring( String eventArg, Date aDate )
public Vector dates( String eventArg, DateRange during )
public Date nextOccurence( String eventArg, Date aDate )
}
Anyone know what it's for? Is it just filler to show that this is just pseudocode and that I should put my arguments there?