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

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

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

import net.yapbam.data.Category;

public class CategoryAddedEvent extends DataEvent {
	private Category category;

	public CategoryAddedEvent(Object source, Category category) {
		super(source);
		this.category = category;
	}

	public Category getCategory() {
		return this.category;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy