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

org.webswing.model.internal.ThreadDumpMsgInternal Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.model.internal;

import org.webswing.model.MsgInternal;

public class ThreadDumpMsgInternal implements MsgInternal {
	private long timestamp;
	private String dump;
	private String reason;

	public long getTimestamp() {
		return timestamp;
	}

	public void setTimestamp(long timestamp) {
		this.timestamp = timestamp;
	}

	public String getDump() {
		return dump;
	}

	public void setDump(String dump) {
		this.dump = dump;
	}

	public String getReason() {
		return reason;
	}

	public void setReason(String reason) {
		this.reason = reason;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy