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

org.kt3k.straw.StrawEvent Maven / Gradle / Ivy

The newest version!
package org.kt3k.straw;

public class StrawEvent {

	private final String type;

	public StrawEvent(String type) {
		this.type = type;
	}

	public String getType() {
		return this.type;
	}

	@Override
	public String toString() {
		return "StrawEvent (type=" + this.type + ")";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy