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

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

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

import net.yapbam.data.Account;

public class AccountAddedEvent extends DataEvent {
	private Account account;

	public AccountAddedEvent(Object source, Account account) {
		super(source);
		this.account = account;
	}

	public Account getAccount() {
		return this.account;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy