
net.yapbam.data.event.ModeRemovedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yapbam-commons Show documentation
Show all versions of yapbam-commons Show documentation
Commons Yapbam classes used by desktop and Android versions.
package net.yapbam.data.event;
import net.yapbam.data.Account;
import net.yapbam.data.Mode;
public class ModeRemovedEvent extends DataEvent {
private int index;
private Account account;
private Mode mode;
public ModeRemovedEvent(Object source, int index, Account account, Mode mode) {
super(source);
this.index = index;
this.account = account;
this.mode = mode;
}
public int getIndex() {
return index;
}
public Account getAccount() {
return account;
}
public Mode getMode() {
return mode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy