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

org.webswing.model.internal.JvmStatsMsgInternal 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 JvmStatsMsgInternal implements MsgInternal {
	private static final long serialVersionUID = 4505813670370834105L;
	private double heapSize;
	private double heapSizeUsed;
	private double cpuUsage;
	private int edtPingSeconds;

	public double getHeapSize() {
		return heapSize;
	}

	public void setHeapSize(double heapSize) {
		this.heapSize = heapSize;
	}

	public double getHeapSizeUsed() {
		return heapSizeUsed;
	}

	public void setHeapSizeUsed(double heapSizeUsed) {
		this.heapSizeUsed = heapSizeUsed;
	}

	public double getCpuUsage() {
		return cpuUsage;
	}

	public void setCpuUsage(double cpuUsage) {
		this.cpuUsage = cpuUsage;
	}

	public void setEdtPingSeconds(int edtPingSeconds) {
		this.edtPingSeconds = edtPingSeconds;
	}

	public int getEdtPingSeconds() {
		return edtPingSeconds;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy