All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.yapbam.data.event.PeriodicalTransactionsAddedEvent Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.yapbam.data.event;

import net.yapbam.data.PeriodicalTransaction;

public class PeriodicalTransactionsAddedEvent extends DataEvent {
	private PeriodicalTransaction[] transactions;

	public PeriodicalTransactionsAddedEvent(Object source, PeriodicalTransaction[] transactions) {
		super(source);
		this.transactions = transactions;
	}

	public PeriodicalTransaction[] getPeriodicalTransactions() {
		return transactions;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy