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

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

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

import net.yapbam.data.Account;
import net.yapbam.data.Checkbook;

public class CheckbookAddedEvent extends DataEvent {
	private Checkbook book;
	private Account account;
	
	public CheckbookAddedEvent(Object source, Account account, Checkbook newBook) {
		super(source);
		this.book = newBook;
		this.account = account;
	}
	
	public Checkbook getCheckbook() {
		return this.book;
	}

	public Account getAccount() {
		return account;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy